diff --git a/include/SFML/System/Thread.hpp b/include/SFML/System/Thread.hpp index b3eec7c0b..aece4c7a0 100644 --- a/include/SFML/System/Thread.hpp +++ b/include/SFML/System/Thread.hpp @@ -66,7 +66,7 @@ public : /// void operator()(); /// }; /// \endcode - /// Note: this does *not* run the thread, use Run(). + /// Note: this does *not* run the thread, use Launch(). /// /// \param function Functor or free function to use as the entry point of the thread /// @@ -93,7 +93,7 @@ public : /// void operator()(std::string arg); /// }; /// \endcode - /// Note: this does *not* run the thread, use Run(). + /// Note: this does *not* run the thread, use Launch(). /// /// \param function Functor or free function to use as the entry point of the thread /// \param argument argument to forward to the function @@ -116,7 +116,7 @@ public : /// void function(); /// }; /// \endcode - /// Note: this does *not* run the thread, use Run(). + /// Note: this does *not* run the thread, use Launch(). /// /// \param function Entry point of the thread /// \param object Pointer to the object to use diff --git a/include/SFML/Window/Window.hpp b/include/SFML/Window/Window.hpp index 060f8ea9b..14f040ae3 100644 --- a/include/SFML/Window/Window.hpp +++ b/include/SFML/Window/Window.hpp @@ -176,7 +176,7 @@ public : unsigned int GetWidth() const; //////////////////////////////////////////////////////////// - /// Get the height of the rendering region of the window + /// \brief Get the height of the rendering region of the window /// /// The height doesn't include the titlebar and borders /// of the window.