diff --git a/Kernel_d/doc/Kernel_d/Concepts/Kernel--Component_accessor_d.h b/Kernel_d/doc/Kernel_d/Concepts/Kernel--Component_accessor_d.h index 05aeb6a194d..32b3c227c9c 100644 --- a/Kernel_d/doc/Kernel_d/Concepts/Kernel--Component_accessor_d.h +++ b/Kernel_d/doc/Kernel_d/Concepts/Kernel--Component_accessor_d.h @@ -19,17 +19,17 @@ the dimension of \f$ p\f$. int dimension(const Kernel_d::Point_d& p); /*! -returns the ith homogeneous coordinate of \f$ p\f$. +returns the i-th homogeneous coordinate of \f$ p\f$. -\pre `0 <= i <=` \link Kernel_d::Component_accessor_d::dimension `dimension`\endlink(`p`). +\pre `0 <= i <= dimension(p)`. */ Kernel_d::RT homogeneous(const Kernel_d::Point_d& p, int i); /*! -returns the ith %Cartesian coordinate of \f$ p\f$. +returns the i-th %Cartesian coordinate of \f$ p\f$. -\pre `0 <= i <` \link Kernel_d::Component_accessor_d::dimension `dimension`\endlink(`p`). +\pre `0 <= i < dimension(p)`. */ Kernel_d::FT cartesian(const Kernel_d::Point_d& p, int i);