summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-01-18 21:37:17 +0100
committerRémi Verschelde <rverschelde@gmail.com>2018-01-18 22:01:42 +0100
commit9f479f096cb50fa8d1215e68c262f110116114ef (patch)
treef115332a8e73ab059c16b077873ca2f3faab9cb1 /main
parenta1c08b71091c47d626410406f36a4bb6fca40953 (diff)
downloadredot-engine-9f479f096cb50fa8d1215e68c262f110116114ef.tar.gz
Fix typos in code and docs with codespell
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp2
-rw-r--r--main/tests/test_string.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/main.cpp b/main/main.cpp
index be334fac48..d670b1d0b5 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -908,7 +908,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
GLOBAL_DEF("debug/settings/stdout/print_fps", OS::get_singleton()->is_stdout_verbose());
- if (!OS::get_singleton()->_verbose_stdout) //overrided
+ if (!OS::get_singleton()->_verbose_stdout) //overridden
OS::get_singleton()->_verbose_stdout = GLOBAL_DEF("debug/settings/stdout/verbose_stdout", false);
if (frame_delay == 0) {
diff --git a/main/tests/test_string.cpp b/main/tests/test_string.cpp
index 5179f6d6d1..af948556c4 100644
--- a/main/tests/test_string.cpp
+++ b/main/tests/test_string.cpp
@@ -893,7 +893,7 @@ TestFunc test_funcs[] = {
MainLoop *test() {
- /** A character length != wchar_t may be forced, so the tests wont work */
+ /** A character length != wchar_t may be forced, so the tests won't work */
ERR_FAIL_COND_V(sizeof(CharType) != sizeof(wchar_t), NULL);