summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-11-16 15:37:02 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-11-16 15:37:02 (GMT)
commit0629e2561c89713bd4e25751befd45e300a69a2f (patch)
treed6ca3e72c9898c88306304cd2710369cf7ce6df9 /Source
parente3b06f10dd88435b66c5b080e95a2861dfb2391b (diff)
downloadCMake-0629e2561c89713bd4e25751befd45e300a69a2f.zip
CMake-0629e2561c89713bd4e25751befd45e300a69a2f.tar.gz
CMake-0629e2561c89713bd4e25751befd45e300a69a2f.tar.bz2
STYLE: fix docs
Diffstat (limited to 'Source')
-rw-r--r--Source/cmConfigureFileCommand.h2
-rw-r--r--Source/cmCreateTestSourceList.h8
-rw-r--r--Source/cmElseCommand.h2
-rw-r--r--Source/cmEnableLanguageCommand.h2
-rw-r--r--Source/cmEnableTestingCommand.h4
-rw-r--r--Source/cmEndForEachCommand.h2
-rw-r--r--Source/cmEndIfCommand.h2
-rw-r--r--Source/cmEndWhileCommand.h2
8 files changed, 12 insertions, 12 deletions
diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h
index 0741951..e2dd493 100644
--- a/Source/cmConfigureFileCommand.h
+++ b/Source/cmConfigureFileCommand.h
@@ -72,7 +72,7 @@ public:
"variables. If @ONLY is specified, only variables "
"of the form @VAR@ will be replaces and ${VAR} will be ignored. "
"This is useful for configuring scripts that use ${VAR}. "
- "Any occurances of #cmakedefine VAR will be replaced with "
+ "Any occurrences of #cmakedefine VAR will be replaced with "
"either #define VAR or /* #undef VAR */ depending on "
"the setting of VAR in CMake";
}
diff --git a/Source/cmCreateTestSourceList.h b/Source/cmCreateTestSourceList.h
index a258654..efee5f3 100644
--- a/Source/cmCreateTestSourceList.h
+++ b/Source/cmCreateTestSourceList.h
@@ -68,12 +68,12 @@ public:
"a single executable. This is useful when building static executables "
"with large libraries to shrink the total required size. "
"The list of source files "
- "needed to build the testdriver will be in SourceListName. "
+ "needed to build the test driver will be in SourceListName. "
"DriverName is the name of the test driver program. The rest of "
"the arguments consist of a list of test source files, can be "
- "; separated. Each test source file should have a function in it that "
- "is the same name as the file with no extension (foo.cxx should have "
- "int foo();) DriverName will be able to call each of the tests by "
+ "semicolon separated. Each test source file should have a function in "
+ "it that is the same name as the file with no extension (foo.cxx should "
+ "have int foo();) DriverName will be able to call each of the tests by "
"name on the command line. If EXTRA_INCLUDE is specified, then the "
"next argument is included into the generated file. If FUNCTION is "
"specified, then the next argument is taken as a function name that "
diff --git a/Source/cmElseCommand.h b/Source/cmElseCommand.h
index a085cef..e3d7e99 100644
--- a/Source/cmElseCommand.h
+++ b/Source/cmElseCommand.h
@@ -66,7 +66,7 @@ public:
{
return
" ELSE(expression)\n"
- "See IF command.";
+ "See the IF command.";
}
cmTypeMacro(cmElseCommand, cmCommand);
diff --git a/Source/cmEnableLanguageCommand.h b/Source/cmEnableLanguageCommand.h
index b8965ab..3db8cb2 100644
--- a/Source/cmEnableLanguageCommand.h
+++ b/Source/cmEnableLanguageCommand.h
@@ -64,7 +64,7 @@ public:
{
return
" ENABLE_LANGUAGE(languageName)\n"
- " This command enables support for the named language in CMake.";
+ "This command enables support for the named language in CMake.";
}
cmTypeMacro(cmEnableLanguageCommand, cmCommand);
diff --git a/Source/cmEnableTestingCommand.h b/Source/cmEnableTestingCommand.h
index b529288..8a2938d 100644
--- a/Source/cmEnableTestingCommand.h
+++ b/Source/cmEnableTestingCommand.h
@@ -70,9 +70,9 @@ public:
return
" ENABLE_TESTING()\n"
"Enables testing for this directory and below. "
- "See also the ADD_TEST command. Note that Dart expects to find "
+ "See also the ADD_TEST command. Note that ctest expects to find "
"a test file in the build directory root. Therefore, this command "
- "should be in the source directory root too.";
+ "should be in the source directory root.";
}
cmTypeMacro(cmEnableTestingCommand, cmCommand);
diff --git a/Source/cmEndForEachCommand.h b/Source/cmEndForEachCommand.h
index e50a911..2f22e4f 100644
--- a/Source/cmEndForEachCommand.h
+++ b/Source/cmEndForEachCommand.h
@@ -72,7 +72,7 @@ public:
{
return
" ENDFOREACH(expression)\n"
- "See FOREACH command.";
+ "See the FOREACH command.";
}
cmTypeMacro(cmEndForEachCommand, cmCommand);
diff --git a/Source/cmEndIfCommand.h b/Source/cmEndIfCommand.h
index 467f95c..2092c61 100644
--- a/Source/cmEndIfCommand.h
+++ b/Source/cmEndIfCommand.h
@@ -66,7 +66,7 @@ public:
{
return
" ENDIF(expression)\n"
- "See IF command.";
+ "See the IF command.";
}
cmTypeMacro(cmEndIfCommand, cmCommand);
diff --git a/Source/cmEndWhileCommand.h b/Source/cmEndWhileCommand.h
index 15cb1f2..28f0a13 100644
--- a/Source/cmEndWhileCommand.h
+++ b/Source/cmEndWhileCommand.h
@@ -72,7 +72,7 @@ public:
{
return
" ENDWHILE(expression)\n"
- "See WHILE command.";
+ "See the WHILE command.";
}
cmTypeMacro(cmEndWhileCommand, cmCommand);