diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-06-04 05:48:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-06-04 14:32:49 (GMT) |
commit | be281068806891f725fa82583ffb97112872f618 (patch) | |
tree | 898dea2588ff9e9407f0f30018d78f6a86542d44 /Source | |
parent | f70da4ed836fa40572d2db393b4bf24a87ba3a87 (diff) | |
download | CMake-be281068806891f725fa82583ffb97112872f618.zip CMake-be281068806891f725fa82583ffb97112872f618.tar.gz CMake-be281068806891f725fa82583ffb97112872f618.tar.bz2 |
Fix misc. typos
Found via `codespell` and `grep`
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWPackage.cxx | 8 | ||||
-rw-r--r-- | Source/CPack/cmCPackLog.h | 2 | ||||
-rw-r--r-- | Source/CTest/cmCTestGenericHandler.h | 2 | ||||
-rw-r--r-- | Source/CTest/cmCTestMemCheckHandler.h | 2 | ||||
-rw-r--r-- | Source/CTest/cmCTestRunTest.cxx | 2 | ||||
-rw-r--r-- | Source/Checks/Curses.cmake | 2 | ||||
-rw-r--r-- | Source/CursesDialog/cmCursesMainForm.h | 2 | ||||
-rw-r--r-- | Source/CursesDialog/form/frm_post.c | 2 | ||||
-rw-r--r-- | Source/bindexplib.cxx | 2 | ||||
-rw-r--r-- | Source/cmCTest.h | 4 | ||||
-rw-r--r-- | Source/cmExportBuildFileGenerator.cxx | 2 | ||||
-rw-r--r-- | Source/cmExportInstallFileGenerator.cxx | 2 | ||||
-rw-r--r-- | Source/cmExportInstallFileGenerator.h | 2 | ||||
-rw-r--r-- | Source/cmExtraCodeBlocksGenerator.cxx | 2 | ||||
-rw-r--r-- | Source/cmExtraCodeLiteGenerator.cxx | 4 | ||||
-rw-r--r-- | Source/cmFindCommon.cxx | 4 | ||||
-rw-r--r-- | Source/cmGeneratedFileStream.h | 2 | ||||
-rw-r--r-- | Source/cmLinkLibrariesCommand.cxx | 2 | ||||
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 2 | ||||
-rw-r--r-- | Source/cmSystemTools.h | 2 |
20 files changed, 26 insertions, 26 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWPackage.cxx b/Source/CPack/IFW/cmCPackIFWPackage.cxx index 4c84612..f24ab69 100644 --- a/Source/CPack/IFW/cmCPackIFWPackage.cxx +++ b/Source/CPack/IFW/cmCPackIFWPackage.cxx @@ -126,10 +126,10 @@ void cmCPackIFWPackage::DefaultConfiguration() this->RequiresAdminRights.clear(); } -// Defaul configuration (all in one package) +// Default configuration (all in one package) int cmCPackIFWPackage::ConfigureFromOptions() { - // Restore defaul configuration + // Restore default configuration this->DefaultConfiguration(); // Name @@ -168,7 +168,7 @@ int cmCPackIFWPackage::ConfigureFromComponent(cmCPackComponent* component) return 0; } - // Restore defaul configuration + // Restore default configuration this->DefaultConfiguration(); std::string prefix = "CPACK_IFW_COMPONENT_" + @@ -256,7 +256,7 @@ int cmCPackIFWPackage::ConfigureFromGroup(cmCPackComponentGroup* group) return 0; } - // Restore defaul configuration + // Restore default configuration this->DefaultConfiguration(); std::string prefix = "CPACK_IFW_COMPONENT_GROUP_" + diff --git a/Source/CPack/cmCPackLog.h b/Source/CPack/cmCPackLog.h index 10deda4..8e99221 100644 --- a/Source/CPack/cmCPackLog.h +++ b/Source/CPack/cmCPackLog.h @@ -84,7 +84,7 @@ public: bool SetLogOutputFile(const char* fname); //! Set the various prefixes for the logging. SetPrefix sets the generic - // prefix that overwrittes missing ones. + // prefix that overwrites missing ones. void SetPrefix(std::string const& pfx) { this->Prefix = pfx; } void SetOutputPrefix(std::string const& pfx) { this->OutputPrefix = pfx; } void SetVerbosePrefix(std::string const& pfx) { this->VerbosePrefix = pfx; } diff --git a/Source/CTest/cmCTestGenericHandler.h b/Source/CTest/cmCTestGenericHandler.h index e881252..cf91b4f 100644 --- a/Source/CTest/cmCTestGenericHandler.h +++ b/Source/CTest/cmCTestGenericHandler.h @@ -25,7 +25,7 @@ class cmCTestGenericHandler { public: /** - * If verbose then more informaiton is printed out + * If verbose then more information is printed out */ void SetVerbose(bool val) { diff --git a/Source/CTest/cmCTestMemCheckHandler.h b/Source/CTest/cmCTestMemCheckHandler.h index 9218294..8880dac 100644 --- a/Source/CTest/cmCTestMemCheckHandler.h +++ b/Source/CTest/cmCTestMemCheckHandler.h @@ -127,7 +127,7 @@ private: //! Parse Valgrind/Purify/Bounds Checker result out of the output // string. After running, log holds the output and results hold the - // different memmory errors. + // different memory errors. bool ProcessMemCheckOutput(const std::string& str, std::string& log, std::vector<int>& results); bool ProcessMemCheckValgrindOutput(const std::string& str, std::string& log, diff --git a/Source/CTest/cmCTestRunTest.cxx b/Source/CTest/cmCTestRunTest.cxx index e729eeb..927797a 100644 --- a/Source/CTest/cmCTestRunTest.cxx +++ b/Source/CTest/cmCTestRunTest.cxx @@ -558,7 +558,7 @@ bool cmCTestRunTest::StartTest(size_t total) void cmCTestRunTest::ComputeArguments() { - this->Arguments.clear(); // reset becaue this might be a rerun + this->Arguments.clear(); // reset because this might be a rerun std::vector<std::string>::const_iterator j = this->TestProperties->Args.begin(); ++j; // skip test name diff --git a/Source/Checks/Curses.cmake b/Source/Checks/Curses.cmake index 46dc770..2942b66 100644 --- a/Source/Checks/Curses.cmake +++ b/Source/Checks/Curses.cmake @@ -26,7 +26,7 @@ try_compile(CMakeCheckCurses_COMPILED OUTPUT_VARIABLE CMakeCheckCurses_OUTPUT ) -# Covnert result from cache entry to normal variable. +# Convert result from cache entry to normal variable. set(CMakeCheckCurses_COMPILED "${CMakeCheckCurses_COMPILED}") unset(CMakeCheckCurses_COMPILED CACHE) diff --git a/Source/CursesDialog/cmCursesMainForm.h b/Source/CursesDialog/cmCursesMainForm.h index 7f5b3ca..2c006cf 100644 --- a/Source/CursesDialog/cmCursesMainForm.h +++ b/Source/CursesDialog/cmCursesMainForm.h @@ -125,7 +125,7 @@ protected: std::vector<cmCursesCacheEntryComposite*>* Entries; // Errors produced during last run of cmake std::vector<std::string> Errors; - // Command line argumens to be passed to cmake each time + // Command line arguments to be passed to cmake each time // it is run std::vector<std::string> Args; // Message displayed when user presses 'h' diff --git a/Source/CursesDialog/form/frm_post.c b/Source/CursesDialog/form/frm_post.c index 924fe6a..fc0a359 100644 --- a/Source/CursesDialog/form/frm_post.c +++ b/Source/CursesDialog/form/frm_post.c @@ -67,7 +67,7 @@ int post_form(FORM * form) if ((form->cols > width) || (form->rows > height)) RETURN(E_NO_ROOM); - /* reset form->curpage to an invald value. This forces Set_Form_Page + /* reset form->curpage to an invalid value. This forces Set_Form_Page to do the page initialization which is required by post_form. */ page = form->curpage; diff --git a/Source/bindexplib.cxx b/Source/bindexplib.cxx index 5bcaa45..a107294 100644 --- a/Source/bindexplib.cxx +++ b/Source/bindexplib.cxx @@ -390,7 +390,7 @@ bool bindexplib::AddDefinitionFile(const char* filename) } std::string str; while (std::getline(infile, str)) { - // skip the LIBRAY and EXPORTS lines (if any) + // skip the LIBRARY and EXPORTS lines (if any) if ((str.compare(0, 7, "LIBRARY") == 0) || (str.compare(0, 7, "EXPORTS") == 0)) { continue; diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 603bb41..ddeab1a 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -139,7 +139,7 @@ public: */ int TestDirectory(bool memcheck); - /** what is the configuraiton type, e.g. Debug, Release etc. */ + /** what is the configuration type, e.g. Debug, Release etc. */ std::string const& GetConfigType(); cmDuration GetTimeOut() { return this->TimeOut; } void SetTimeOut(cmDuration t) { this->TimeOut = t; } @@ -561,7 +561,7 @@ private: bool HandleCommandLineArguments(size_t& i, std::vector<std::string>& args, std::string& errormsg); - /** hande the -S -SP and -SR arguments */ + /** handle the -S -SP and -SR arguments */ void HandleScriptArguments(size_t& i, std::vector<std::string>& args, bool& SRArgumentSpecified); diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index 72489bf..47636cd 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -151,7 +151,7 @@ void cmExportBuildFileGenerator::GenerateImportTargetsConfig( target, properties, missingTargets); } - // TOOD: PUBLIC_HEADER_LOCATION + // TODO: PUBLIC_HEADER_LOCATION // This should wait until the build feature propagation stuff // is done. Then this can be a propagated include directory. // this->GenerateImportProperty(config, te->HeaderGenerator, diff --git a/Source/cmExportInstallFileGenerator.cxx b/Source/cmExportInstallFileGenerator.cxx index 63d04a6..02686f3 100644 --- a/Source/cmExportInstallFileGenerator.cxx +++ b/Source/cmExportInstallFileGenerator.cxx @@ -347,7 +347,7 @@ void cmExportInstallFileGenerator::GenerateImportTargetsConfig( cmGeneratorExpression::InstallInterface, gtgt, properties, missingTargets); - // TOOD: PUBLIC_HEADER_LOCATION + // TODO: PUBLIC_HEADER_LOCATION // This should wait until the build feature propagation stuff // is done. Then this can be a propagated include directory. // this->GenerateImportProperty(config, te->HeaderGenerator, diff --git a/Source/cmExportInstallFileGenerator.h b/Source/cmExportInstallFileGenerator.h index ea607fb..cbd6507 100644 --- a/Source/cmExportInstallFileGenerator.h +++ b/Source/cmExportInstallFileGenerator.h @@ -41,7 +41,7 @@ public: files. */ cmExportInstallFileGenerator(cmInstallExportGenerator* iegen); - /** Get the per-config file generated for each configuraiton. This + /** Get the per-config file generated for each configuration. This maps from the configuration name to the file temporary location for installation. */ std::map<std::string, std::string> const& GetConfigImportFiles() diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx index 759094b..b636c73 100644 --- a/Source/cmExtraCodeBlocksGenerator.cxx +++ b/Source/cmExtraCodeBlocksGenerator.cxx @@ -337,7 +337,7 @@ void cmExtraCodeBlocksGenerator::CreateNewProjectFile( xml.EndElement(); // Build // Collect all used source files in the project. - // Keep a list of C/C++ source files which might have an acompanying header + // Keep a list of C/C++ source files which might have an accompanying header // that should be looked for. typedef std::map<std::string, CbpUnit> all_files_map_t; all_files_map_t allFiles; diff --git a/Source/cmExtraCodeLiteGenerator.cxx b/Source/cmExtraCodeLiteGenerator.cxx index c7c780c..b76efb2 100644 --- a/Source/cmExtraCodeLiteGenerator.cxx +++ b/Source/cmExtraCodeLiteGenerator.cxx @@ -265,7 +265,7 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile( // Collect all used source files in the project // Sort them into two containers, one for C/C++ implementation files - // which may have an acompanying header, one for all other files + // which may have an accompanying header, one for all other files std::map<std::string, cmSourceFile*> cFiles; std::set<std::string> otherFiles; @@ -571,7 +571,7 @@ void cmExtraCodeLiteGenerator::CreateNewProjectFile( // Collect all used source files in the project // Sort them into two containers, one for C/C++ implementation files - // which may have an acompanying header, one for all other files + // which may have an accompanying header, one for all other files std::string projectType; std::map<std::string, cmSourceFile*> cFiles; diff --git a/Source/cmFindCommon.cxx b/Source/cmFindCommon.cxx index 64108d7..fbaacfc 100644 --- a/Source/cmFindCommon.cxx +++ b/Source/cmFindCommon.cxx @@ -56,7 +56,7 @@ void cmFindCommon::InitializeSearchPathGroups() { std::vector<PathLabel>* labels; - // Define the varoius different groups of path types + // Define the various different groups of path types // All search paths labels = &this->PathGroupLabelMap[PathGroup::All]; @@ -71,7 +71,7 @@ void cmFindCommon::InitializeSearchPathGroups() // Define the search group order this->PathGroupOrder.push_back(PathGroup::All); - // Create the idividual labeld search paths + // Create the individual labeled search paths this->LabeledPaths.insert( std::make_pair(PathLabel::PackageRoot, cmSearchPath(this))); this->LabeledPaths.insert( diff --git a/Source/cmGeneratedFileStream.h b/Source/cmGeneratedFileStream.h index 2b8056f..48f93c5 100644 --- a/Source/cmGeneratedFileStream.h +++ b/Source/cmGeneratedFileStream.h @@ -109,7 +109,7 @@ public: /** * Close the output file. This should be used only with an open * stream. The temporary file is atomically renamed to the - * destionation file if the stream is still valid when this method + * destination file if the stream is still valid when this method * is called. */ bool Close(); diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index 708ec8c..13f6bae 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -13,7 +13,7 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args, if (args.empty()) { return true; } - // add libraries, nothe that there is an optional prefix + // add libraries, note that there is an optional prefix // of debug and optimized than can be used for (std::vector<std::string>::const_iterator i = args.begin(); i != args.end(); ++i) { diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index bc72f1b..869ef1e 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -243,7 +243,7 @@ protected: cmGeneratorTarget* target, const char* filename = nullptr); - // Helper methods for dependeny updates. + // Helper methods for dependency updates. bool ScanDependencies( const char* targetDir, std::map<std::string, cmDepends::DependencyVector>& validDeps); diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 4390c86..c0a1b6b 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -333,7 +333,7 @@ public: static FileFormat GetFileFormat(const char* ext); /** Windows if this is true, the CreateProcess in RunCommand will - * not show new consol windows when running programs. + * not show new console windows when running programs. */ static void SetRunCommandHideConsole(bool v) { s_RunCommandHideConsole = v; } static bool GetRunCommandHideConsole() { return s_RunCommandHideConsole; } |