From e7284cd665efd7c52f90e6a875ea07d009e426a6 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Tue, 10 Jul 2012 20:22:08 +0200 Subject: [PATCH] Minor correction in API documentation --- include/SFML/Window/Window.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/SFML/Window/Window.hpp b/include/SFML/Window/Window.hpp index 9921aa1e..56600720 100644 --- a/include/SFML/Window/Window.hpp +++ b/include/SFML/Window/Window.hpp @@ -178,11 +178,11 @@ public : const ContextSettings& getSettings() const; //////////////////////////////////////////////////////////// - /// \brief Pop the event on top of events stack, if any, and return it + /// \brief Pop the event on top of the event queue, if any, and return it /// /// This function is not blocking: if there's no pending event then /// it will return false and leave \a event unmodified. - /// Note that more than one event may be present in the events stack, + /// Note that more than one event may be present in the event queue, /// thus you should always call this function in a loop /// to make sure that you process every pending event. /// \code @@ -195,7 +195,7 @@ public : /// /// \param event Event to be returned /// - /// \return True if an event was returned, or false if the events stack was empty + /// \return True if an event was returned, or false if the event queue was empty /// /// \see waitEvent ///