diff --git a/conversion/stringconversion.cpp b/conversion/stringconversion.cpp index 6b5086a..71d7793 100644 --- a/conversion/stringconversion.cpp +++ b/conversion/stringconversion.cpp @@ -125,7 +125,7 @@ private: /*! * \brief Converts the specified string from one character set to another. * \remarks - * - The term "size" referes here always to the actual number of bytes and not to the number of characters + * - The term "size" refers here always to the actual number of bytes and not to the number of characters * (eg. the size of the UTF-8 string "รถ" is 2 and not 1). * - The expected size of the output buffer can be specified via \a outputBufferSizeFactor. This hint helps * to reduce buffer reallocations during the conversion (eg. for the conversion from Latin-1 to UTF-16 diff --git a/doc/buildvariables.md b/doc/buildvariables.md index f5f149a..b13d6fb 100644 --- a/doc/buildvariables.md +++ b/doc/buildvariables.md @@ -40,7 +40,7 @@ None of these are enabled or set by default, unless stated otherwise. (enabled by default) * `BASH_COMPLETION_ENABLED=ON/OFF`: enables Bash completion (enabled by default) -* `LOGGING_ENABLED=ON/OFF`: enables further loggin in some applications +* `LOGGING_ENABLED=ON/OFF`: enables further logging in some applications * `FORCE_OLD_ABI=ON/OFF`: forces use of old C++ ABI * sets `_GLIBCXX_USE_CXX11_ABI=0` * only relevant when using libstdc++ diff --git a/tests/argumentparsertests.cpp b/tests/argumentparsertests.cpp index e6b9937..6234d2e 100644 --- a/tests/argumentparsertests.cpp +++ b/tests/argumentparsertests.cpp @@ -324,7 +324,7 @@ void ArgumentParserTests::testParsing() parser.parseArgs(2, argv6, ParseArgumentBehavior::CheckConstraints | ParseArgumentBehavior::InvokeCallbacks); CPPUNIT_ASSERT(qtConfigArgs.qtWidgetsGuiArg().isPresent()); - // constraint checking: dependend arguments (-f requires -i or -p) + // constraint checking: dependent arguments (-f requires -i or -p) const char *argv7[] = { "tageditor", "-f", "test" }; parser.resetArgs(); try {