From 693cdc659fc4a7b9065e689df223290fc185b8f6 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 27 Nov 2015 16:43:18 +0300 Subject: [PATCH] Documentation fix --- SDL2pp/Rect.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SDL2pp/Rect.hh b/SDL2pp/Rect.hh index 89de653..d436a22 100644 --- a/SDL2pp/Rect.hh +++ b/SDL2pp/Rect.hh @@ -380,7 +380,7 @@ public: /// /// \param[in] amount Number of pixels to extend by /// - /// \returns Reference to self + /// \returns Extended rect /// //////////////////////////////////////////////////////////// Rect GetExtension(unsigned int amount) const; @@ -393,7 +393,7 @@ public: /// \param[in] vamount Number of pixels to extend by /// in vertical direction /// - /// \returns Reference to self + /// \returns Extended rect /// //////////////////////////////////////////////////////////// Rect GetExtension(unsigned int hamount, unsigned int vamount) const; @@ -403,7 +403,7 @@ public: /// /// \param[in] amount Number of pixels to extend by /// - /// \returns Extended rect + /// \returns Reference to self /// //////////////////////////////////////////////////////////// Rect& Extend(unsigned int amount); @@ -416,7 +416,7 @@ public: /// \param[in] vamount Number of pixels to extend by /// in vertical direction /// - /// \returns Extended rect + /// \returns Reference to self /// //////////////////////////////////////////////////////////// Rect& Extend(unsigned int hamount, unsigned int vamount);