From 4089a662a9e64d3a1fc268a941b690f29a46ef1d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 28 May 2021 12:47:48 +1000 Subject: [PATCH] docs: fix simple typo, symetric -> symmetric (#883) There is a small typo in doc/source/tuto_creating_new_kernels.rst. Should read `symmetric` rather than `symetric`. --- doc/source/tuto_creating_new_kernels.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/tuto_creating_new_kernels.rst b/doc/source/tuto_creating_new_kernels.rst index ec46aedc..9d909c3b 100644 --- a/doc/source/tuto_creating_new_kernels.rst +++ b/doc/source/tuto_creating_new_kernels.rst @@ -7,7 +7,7 @@ We will see in this tutorial how to create new kernels in GPy. We will also give Structure of a kernel in GPy ============================ -In GPy a kernel object is made of a list of kernpart objects, which correspond to symetric positive definite functions. More precisely, the kernel should be understood as the sum of the kernparts. In order to implement a new covariance, the following steps must be followed +In GPy a kernel object is made of a list of kernpart objects, which correspond to symmetric positive definite functions. More precisely, the kernel should be understood as the sum of the kernparts. In order to implement a new covariance, the following steps must be followed 1. implement the new covariance as a :py:class:`GPy.kern.src.kern.Kern` object 2. update the :py:mod:`GPy.kern.src` file