summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2009-04-19 16:48:30 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2009-04-19 16:48:30 (GMT)
commitbc9703b695c77c152e04d62903a8ab91494f4e1c (patch)
treee950ff0f63797f1c6729ba20bb0aa4adb3136ac7 /Source
parent879f2f98fec41d89dce20dbcffce597ae534a3ba (diff)
downloadCMake-bc9703b695c77c152e04d62903a8ab91494f4e1c.zip
CMake-bc9703b695c77c152e04d62903a8ab91494f4e1c.tar.gz
CMake-bc9703b695c77c152e04d62903a8ab91494f4e1c.tar.bz2
STYLE: fix typos in the docs
Alex
Diffstat (limited to 'Source')
-rw-r--r--Source/cmDocumentVariables.cxx10
-rw-r--r--Source/cmFindPackageCommand.cxx2
-rw-r--r--Source/cmake.cxx2
-rw-r--r--Source/cmakemain.cxx2
4 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx
index 199b36a..f0af3ea 100644
--- a/Source/cmDocumentVariables.cxx
+++ b/Source/cmDocumentVariables.cxx
@@ -67,7 +67,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
"Variables that Provide Information");
cm->DefineProperty
("CMAKE_BUILD_TOOL", cmProperty::VARIABLE,
- "Tool used for the acutal build process.",
+ "Tool used for the actual build process.",
"This variable is set to the program that will be"
" needed to build the output of CMake. If the "
"generator selected was Visual Studio 6, the "
@@ -263,7 +263,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
("CMAKE_SKIP_RPATH", cmProperty::VARIABLE,
"If true, do not add run time path information.",
"If this is set to TRUE, then the rpath information "
- "is not added to compiled executables. The default"
+ "is not added to compiled executables. The default "
"is to add rpath information if the platform supports it."
"This allows for easy running from the build tree.",false,
"Variables that Provide Information");
@@ -338,7 +338,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
("CMAKE_IMPORT_LIBRARY_SUFFIX", cmProperty::VARIABLE,
"The suffix for import libraries that you link to.",
"The suffix to use for the end of an import library if used "
- "onthis platform.",
+ "on this platform.",
false,
"Variables that Provide Information");
cm->DefineProperty
@@ -450,7 +450,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
cm->DefineProperty
("CMAKE_MODULE_PATH", cmProperty::VARIABLE,
"Path to look for cmake modules to load.",
- "Specifies a path to override the default seach path for "
+ "Specifies a path to override the default search path for "
"CMake modules. For example include commands will look "
"in this path first for modules to include.",
false,
@@ -603,7 +603,7 @@ void cmDocumentVariables::DefineVariables(cmake* cm)
cm->DefineProperty
("CMAKE_SYSTEM", cmProperty::VARIABLE,
"Name of system cmake is compiling for.",
- "This variable is the composite of CMAKE_SYSTEM_NAME"
+ "This variable is the composite of CMAKE_SYSTEM_NAME "
"and CMAKE_SYSTEM_VERSION, like this "
"${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_VERSION}. "
"If CMAKE_SYSTEM_VERSION is not set, then "
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 5b61180..10d96a1 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -169,7 +169,7 @@ cmFindPackageCommand::cmFindPackageCommand()
"numbers. "
"Package version numbers are checked by \"version\" files provided by "
"the packages themselves. "
- "For a candidate package confguration file \"<config-file>.cmake\" the "
+ "For a candidate package configuration file \"<config-file>.cmake\" the "
"corresponding version file is located next to it and named either "
"\"<config-file>-version.cmake\" or \"<config-file>Version.cmake\". "
"If no such version file is available then the configuration file "
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 83d779b..461354a 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3443,7 +3443,7 @@ void cmake::DefineProperties(cmake *cm)
("ENABLED_LANGUAGES", cmProperty::GLOBAL,
"Read-only property that contains the list of currently "
"enabled languages",
- "Set to list of currently enabled lanauges.");
+ "Set to list of currently enabled languages.");
cm->DefineProperty
("RULE_LAUNCH_COMPILE", cmProperty::GLOBAL,
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 61e7cce..18383e2 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -76,7 +76,7 @@ static const char * cmDocumentationOptions[][3] =
{"-E", "CMake command mode.",
"For true platform independence, CMake provides a list of commands "
"that can be used on all systems. Run with -E help for the usage "
- "information. Commands availble are: chdir, copy, copy_if_different "
+ "information. Commands available are: chdir, copy, copy_if_different "
"copy_directory, compare_files, echo, echo_append, environment, "
"make_directory, md5sum, remove_directory, remove, tar, time, "
"touch, touch_nocreate, write_regv, delete_regv, comspec, "