From 745b446440e6375c935aa081797fb5c7c6019dc8 Mon Sep 17 00:00:00 2001 From: Jure Slak Date: Fri, 28 Jul 2017 00:28:12 +0200 Subject: [PATCH] Fixed typo in Event description. --- include/SFML/Window/Event.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SFML/Window/Event.hpp b/include/SFML/Window/Event.hpp index 7bfd610f..74b0bc1c 100644 --- a/include/SFML/Window/Event.hpp +++ b/include/SFML/Window/Event.hpp @@ -257,7 +257,7 @@ public: /// filled; all other members will have undefined values and must not /// be read if the type of the event doesn't match. For example, /// if you received a KeyPressed event, then you must read the -/// event.key member, all other members such as event.MouseMove +/// event.key member, all other members such as event.mouseMove /// or event.text will have undefined values. /// /// Usage example: