From 1dc1acd5e1a639f61a431e0ff6ebbd8edd96de64 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 9 Aug 2020 11:46:30 +0200 Subject: Spelling corrections is comments Some spelling omissions found by Fossies. --- cmake/Sanitizers/sanitize-helpers.cmake | 2 +- src/cite.cpp | 2 +- src/context.cpp | 2 +- src/markdown.cpp | 2 +- testing/CMakeLists.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cmake/Sanitizers/sanitize-helpers.cmake b/cmake/Sanitizers/sanitize-helpers.cmake index 3649b07..dd4b898 100644 --- a/cmake/Sanitizers/sanitize-helpers.cmake +++ b/cmake/Sanitizers/sanitize-helpers.cmake @@ -106,7 +106,7 @@ function (sanitizer_check_compiler_flags FLAG_CANDIDATES NAME PREFIX) get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) foreach (LANG ${ENABLED_LANGUAGES}) - # Sanitizer flags are not dependend on language, but the used compiler. + # Sanitizer flags are not dependent on language, but the used compiler. # So instead of searching flags foreach language, search flags foreach # compiler used. set(COMPILER ${CMAKE_${LANG}_COMPILER_ID}) diff --git a/src/cite.cpp b/src/cite.cpp index fd6fe3e..03bdb02 100644 --- a/src/cite.cpp +++ b/src/cite.cpp @@ -211,7 +211,7 @@ void CitationManager::insertCrossReferencesForBibFile(const QCString &bibFile) { QCString crossrefName = line.mid((uint)(j+1),(uint)(k-j-1)); // check if the reference with the cross reference is used - // insert cross refererence when cross reference has not yet been added. + // insert cross reference when cross reference has not yet been added. if ((p->entries.find(citeName.data())!=p->entries.end()) && (p->entries.find(crossrefName.data())==p->entries.end())) // not found yet { diff --git a/src/context.cpp b/src/context.cpp index 3bdead3..2af2c84 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -1071,7 +1071,7 @@ class TranslateContext::Private s_inst.addProperty("namespaceList", &Private::namespaceList); //%% string namespaceMembers s_inst.addProperty("namespaceMembers", &Private::namespaceMembers); - //%% srting fileList + //%% string fileList s_inst.addProperty("fileList", &Private::fileList); //%% string fileMembers s_inst.addProperty("fileMembers", &Private::fileMembers); diff --git a/src/markdown.cpp b/src/markdown.cpp index 78e6a85..00c0723 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -194,7 +194,7 @@ Markdown::Markdown(const char *fileName,int lineNr,int indentLevel) enum Alignment { AlignNone, AlignLeft, AlignCenter, AlignRight }; -//---------- contants ------- +//---------- constants ------- // const uchar g_utf8_nbsp[3] = { 0xc2, 0xa0, 0}; // UTF-8 nbsp const char *g_doxy_nsbp = "&_doxy_nbsp;"; // doxygen escape command for UTF-8 nbsp diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt index 1851c9f..b354e78 100644 --- a/testing/CMakeLists.txt +++ b/testing/CMakeLists.txt @@ -1,4 +1,4 @@ -# run all tests sequentially (keep for backward compatibilty) +# run all tests sequentially (keep for backward compatibility) add_custom_target(tests COMMENT "Running doxygen tests..." COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py --doxygen ${PROJECT_BINARY_DIR}/bin/doxygen --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing -- cgit v0.12