diff options
| author | luz paz <luzpaz@users.noreply.github.com> | 2021-03-18 00:43:45 +0000 |
|---|---|---|
| committer | luz paz <luzpaz@users.noreply.github.com> | 2021-03-18 00:43:45 +0000 |
| commit | 5776362b8075f7870b8592627d082b8e4e2aaf2c (patch) | |
| tree | fcac53b85a8f10b5a6a698cdc7c3ccd21f700625 /NativeApp/include | |
| parent | Updated readme (diff) | |
| download | DiligentTools-5776362b8075f7870b8592627d082b8e4e2aaf2c.tar.gz DiligentTools-5776362b8075f7870b8592627d082b8e4e2aaf2c.zip | |
Fix misc. typos
Found via `codespell`
Diffstat (limited to 'NativeApp/include')
| -rw-r--r-- | NativeApp/include/AppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/Linux/LinuxAppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/NativeAppBase.hpp | 2 | ||||
| -rw-r--r-- | NativeApp/include/UWP/UWPAppBase.hpp | 2 |
4 files changed, 4 insertions, 4 deletions
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. |
