diff --git a/CMakeLists.txt b/CMakeLists.txt index d879b26f3..1ad8c561b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,7 +64,7 @@ endif() set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/modules/") -# If targetting NaCl, set explicit OpenGL ES 2.0 support +# If targeting NaCl, set explicit OpenGL ES 2.0 support if(${CMAKE_SYSTEM_NAME} STREQUAL NaCl) set(TARGET_GLES 1) set(TARGET_GLES2 1) diff --git a/src/Platform/CMakeLists.txt b/src/Platform/CMakeLists.txt index 378c14cbc..6f7b75b18 100644 --- a/src/Platform/CMakeLists.txt +++ b/src/Platform/CMakeLists.txt @@ -63,7 +63,7 @@ endif() # NaCl application if(WITH_NACLAPPLICATION) if(NOT ${CMAKE_SYSTEM_NAME} STREQUAL NaCl) - message(FATAL_ERROR "NaClApplication is available only when targetting Google Chrome Native Client. Set WITH_NACLAPPLICATION to OFF to skip building it.") + message(FATAL_ERROR "NaClApplication is available only when targeting Google Chrome Native Client. Set WITH_NACLAPPLICATION to OFF to skip building it.") endif() add_library(MagnumNaClApplication STATIC diff --git a/src/Platform/GlxApplication.h b/src/Platform/GlxApplication.h index e5f8f470b..4984ad6f1 100644 --- a/src/Platform/GlxApplication.h +++ b/src/Platform/GlxApplication.h @@ -37,7 +37,7 @@ namespace Magnum { namespace Platform { @brief GLX application Creates window with double-buffered OpenGL or OpenGL ES 2.0 context, if -targetting OpenGL ES. Uses GlxContextHandler. +targeting OpenGL ES. Uses GlxContextHandler. @section GlxApplication-usage Usage diff --git a/src/Platform/GlxContextHandler.h b/src/Platform/GlxContextHandler.h index d5455c5d0..60494e0f9 100644 --- a/src/Platform/GlxContextHandler.h +++ b/src/Platform/GlxContextHandler.h @@ -44,7 +44,7 @@ namespace Magnum { namespace Platform { /** @brief GLX context -Creates OpenGL or OpenGL ES 2.0 context, if targetting OpenGL ES. Used in +Creates OpenGL or OpenGL ES 2.0 context, if targeting OpenGL ES. Used in GlxApplication. */ class GlxContextHandler: public AbstractContextHandler { diff --git a/src/Platform/WindowlessGlxApplication.h b/src/Platform/WindowlessGlxApplication.h index b3b86ddea..47c0cbced 100644 --- a/src/Platform/WindowlessGlxApplication.h +++ b/src/Platform/WindowlessGlxApplication.h @@ -68,7 +68,7 @@ class WindowlessGlxApplication { * @param argv Arguments of `main()` function * * Creates window with double-buffered OpenGL 3.2 core context or - * OpenGL ES 2.0 context, if targetting OpenGL ES. + * OpenGL ES 2.0 context, if targeting OpenGL ES. */ explicit WindowlessGlxApplication(int& argc, char** argv);