From 9f65195972697eaa544c68172a6ccafed38dd352 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 26 Dec 2014 21:42:36 +0300 Subject: [PATCH] Better description for bool returns --- SDL2pp/Rect.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SDL2pp/Rect.hh b/SDL2pp/Rect.hh index ed51eb4..36647c0 100644 --- a/SDL2pp/Rect.hh +++ b/SDL2pp/Rect.hh @@ -113,7 +113,7 @@ public: /// /// \param other Rect to compare to /// - /// \returns Whether two rectangles are identical + /// \returns True if two rectangles are identical /// //////////////////////////////////////////////////////////// bool operator==(const Rect& other) const; @@ -123,7 +123,7 @@ public: /// /// \param other Rect to compare to /// - /// \returns Whether two rectangles are not identical + /// \returns True if two rectangles are not identical /// //////////////////////////////////////////////////////////// bool operator!=(const Rect& other) const; @@ -238,7 +238,7 @@ public: /// /// \param point Point to check /// - /// \returns Whether the point is contained in the rect + /// \returns True if the point is contained in the rect /// //////////////////////////////////////////////////////////// bool Contains(const Point& point) const;