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