From 5776362b8075f7870b8592627d082b8e4e2aaf2c Mon Sep 17 00:00:00 2001 From: luz paz Date: Wed, 17 Mar 2021 20:43:45 -0400 Subject: Fix misc. typos Found via `codespell` --- NativeApp/include/AppBase.hpp | 2 +- NativeApp/include/Linux/LinuxAppBase.hpp | 2 +- NativeApp/include/NativeAppBase.hpp | 2 +- NativeApp/include/UWP/UWPAppBase.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'NativeApp/include') diff --git a/NativeApp/include/AppBase.hpp b/NativeApp/include/AppBase.hpp index 34d99fa..3a9eddb 100644 --- a/NativeApp/include/AppBase.hpp +++ b/NativeApp/include/AppBase.hpp @@ -110,7 +110,7 @@ public: /// Called by the framework to request the desired initial window size. /// This method is called before the platform-specific window is created. - /// An application may override this method to speciy required initial + /// An application may override this method to specify required initial /// window width and height. virtual void GetDesiredInitialWindowSize(int& width, int& height) { diff --git a/NativeApp/include/Linux/LinuxAppBase.hpp b/NativeApp/include/Linux/LinuxAppBase.hpp index 809f831..33c2b26 100644 --- a/NativeApp/include/Linux/LinuxAppBase.hpp +++ b/NativeApp/include/Linux/LinuxAppBase.hpp @@ -56,7 +56,7 @@ class LinuxAppBase : public AppBase public: /// Called when GL context is initialized - /// An application must override this method to perform requred + /// An application must override this method to perform required /// initialization operations after OpenGL context has been initialized /// by the framework /// \param [in] display - XLib display. diff --git a/NativeApp/include/NativeAppBase.hpp b/NativeApp/include/NativeAppBase.hpp index 803e8ad..522bf27 100644 --- a/NativeApp/include/NativeAppBase.hpp +++ b/NativeApp/include/NativeAppBase.hpp @@ -77,7 +77,7 @@ } #else -# error Usnupported paltform +# error Usnupported platform #endif diff --git a/NativeApp/include/UWP/UWPAppBase.hpp b/NativeApp/include/UWP/UWPAppBase.hpp index 359ce7a..3434dbb 100644 --- a/NativeApp/include/UWP/UWPAppBase.hpp +++ b/NativeApp/include/UWP/UWPAppBase.hpp @@ -52,7 +52,7 @@ public: // Notifies the app that it is being suspended. virtual void OnSuspending() {} - // Notifes the app that it is no longer suspended. + // Notifies the app that it is no longer suspended. virtual void OnResuming() {} // Notifies renderers that device resources need to be released. -- cgit v1.2.3