Skip to content

Commit

Permalink
Typo: simultaenous -> simultaneous.
Browse files Browse the repository at this point in the history
  • Loading branch information
abgita authored and mosra committed Dec 10, 2020
1 parent 28037ac commit a765101
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -64,7 +64,7 @@ if(BUILD_DEPRECATED)
set(CORRADE_BUILD_DEPRECATED 1)
endif()

option(BUILD_MULTITHREADED "Build in a way that makes it possible to safely use certain Corrade features simultaenously in multiple threads" ON)
option(BUILD_MULTITHREADED "Build in a way that makes it possible to safely use certain Corrade features simultaneously in multiple threads" ON)
if(BUILD_MULTITHREADED)
set(CORRADE_BUILD_MULTITHREADED 1)
endif()
Expand Down
2 changes: 1 addition & 1 deletion doc/building-corrade.dox
Expand Up @@ -542,7 +542,7 @@ Options controlling the build:
recommended to have this option disabled when deploying a final application
as it can result in smaller binaries.
- `BUILD_MULTITHREADED` --- Makes it possible to safely use certain Corrade
features simultaenously in multiple threads. Enabled by default, disable if
features simultaneously in multiple threads. Enabled by default, disable if
you don't need this and don't want to pay potential performance penalties
coming from thread-local variables.

Expand Down
2 changes: 1 addition & 1 deletion doc/corrade-cmake.dox
Expand Up @@ -206,7 +206,7 @@ also available as preprocessor variables if you include
their globals unique even across different shared libraries. Enabled by
default for static builds.
- `CORRADE_BUILD_MULTITHREADED` --- Defined if compiled in a way that makes
it possible to safely use certain Corrade features simultaenously in
it possible to safely use certain Corrade features simultaneously in
multiple threads.
- `CORRADE_TARGET_UNIX` --- Defined if compiled for some Unix flavor (Linux,
BSD, macOS, iOS, Android, ...)
Expand Down
2 changes: 1 addition & 1 deletion modules/FindCorrade.cmake
Expand Up @@ -79,7 +79,7 @@
# globals unique even across different shared libraries. Enabled by default
# for static builds.
# CORRADE_BUILD_MULTITHREADED - Defined if compiled in a way that makes it
# possible to safely use certain Corrade features simultaenously in multiple
# possible to safely use certain Corrade features simultaneously in multiple
# threads
# CORRADE_TARGET_UNIX - Defined if compiled for some Unix flavor
# (Linux, BSD, macOS)
Expand Down
2 changes: 1 addition & 1 deletion src/Corrade/Corrade.h
Expand Up @@ -96,7 +96,7 @@ Enabled by default in a static build.
@m_since{2019,10}
Defined if the library is built in a way that makes it possible to safely use
certain Corrade features simultaenously in multiple threads. In particular:
certain Corrade features simultaneously in multiple threads. In particular:
- @ref Corrade::Utility::Debug "Utility::Debug" and derived classes use it
to have thread-local scoped output redirection and coloring
Expand Down

0 comments on commit a765101

Please sign in to comment.