From 30ce7c4209a618643b26f40144ae9e0bd99c0830 Mon Sep 17 00:00:00 2001 From: Rodolfo Ribeiro Gomes Date: Feb 12 2020 09:56:36 +0000 Subject: minor fixes for some ValueBase method comments --- diff --git a/synfig-core/src/synfig/value.h b/synfig-core/src/synfig/value.h index 7d6188f..8629432 100644 --- a/synfig-core/src/synfig/value.h +++ b/synfig-core/src/synfig/value.h @@ -141,21 +141,21 @@ public: public: - //! Template for the operator assignation operator for non ValueBase classes + //! Template for the operator assigment operator for non ValueBase classes //! \see set() template ValueBase& operator=(const T& x) { set(x); return *this; } - //!Copy/Move assignment operator for ValueBase classes + //! Copy/Move assignment operator for ValueBase classes ValueBase& operator=(ValueBase x); - //! Equal than operator. Segment, Gradient and Bline Points cannot be compared. + //! Comparison operator (equal-to). Segment, Gradient and Bline Points cannot be compared. bool operator==(const ValueBase& rhs)const; - //! Not equal than operator. + //! Not-equal-to operator. bool operator!=(const ValueBase& rhs)const { return !operator==(rhs); } - //! todo writeme + //! Less-than relational operator bool operator<(const ValueBase& rhs)const; bool operator>(const ValueBase& rhs)const