From 37c873466fc6103cb89955f6ec29275e86b51d5f Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Sun, 28 Dec 2014 04:02:40 +0300 Subject: [PATCH] Fix structure name in documentation --- SDL2pp/Font.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SDL2pp/Font.hh b/SDL2pp/Font.hh index 96251eb..fd7eeff 100644 --- a/SDL2pp/Font.hh +++ b/SDL2pp/Font.hh @@ -48,7 +48,7 @@ class RWops; //////////////////////////////////////////////////////////// class Font { private: - TTF_Font* font_; ///< Contained SDL_Font structure + TTF_Font* font_; ///< Contained TTF_Font structure public: //////////////////////////////////////////////////////////// @@ -112,9 +112,9 @@ public: Font& operator=(const Font&) = delete; //////////////////////////////////////////////////////////// - /// \brief Get pointer to contained SDL_Font structure + /// \brief Get pointer to contained TTF_Font structure /// - /// \returns Pointer to contained SDL_Font structure + /// \returns Pointer to contained TTF_Font structure /// //////////////////////////////////////////////////////////// TTF_Font* Get() const;