diff --git a/Source/cmAuxSourceDirectoryCommand.h b/Source/cmAuxSourceDirectoryCommand.h
index 63b8cb3793..538a8e8444 100644
--- a/Source/cmAuxSourceDirectoryCommand.h
+++ b/Source/cmAuxSourceDirectoryCommand.h
@@ -64,9 +64,9 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " aux_source_directory(dir VARIABLE)\n"
+ " aux_source_directory(
)\n"
"Collects the names of all the source files in the specified "
- "directory and stores the list in the variable provided. This "
+ "directory and stores the list in the provided. This "
"command is intended to be used by projects that use explicit "
"template instantiation. Template instantiation files can be "
"stored in a \"Templates\" subdirectory and collected automatically "
diff --git a/Source/cmBuildCommand.h b/Source/cmBuildCommand.h
index 714b8af441..049d6543b5 100644
--- a/Source/cmBuildCommand.h
+++ b/Source/cmBuildCommand.h
@@ -60,10 +60,10 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " build_command(variable MAKECOMMAND)\n"
- "Sets the given variable to a string containing the command that "
+ " build_command( )\n"
+ "Sets the given to a string containing the command that "
"will build this project from the root of the build tree using the "
- "build tool given by MAKECOMMAND. MAKECOMMAND should be msdev, "
+ "build tool given by . should be msdev, "
"nmake, make or one of the end user build tools. "
"This is useful for configuring testing systems.";
}
diff --git a/Source/cmCreateTestSourceList.h b/Source/cmCreateTestSourceList.h
index 3e1f1ddd9e..607b66f58d 100644
--- a/Source/cmCreateTestSourceList.h
+++ b/Source/cmCreateTestSourceList.h
@@ -60,7 +60,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " create_test_sourcelist(SourceListName DriverName\n"
+ " create_test_sourcelist(sourceListName driverName\n"
" test1 test2 test3\n"
" EXTRA_INCLUDE include.h\n"
" FUNCTION function)\n"
@@ -68,7 +68,7 @@ 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 test driver 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 "
"semicolon separated. Each test source file should have a function in "
diff --git a/Source/cmExportCommand.h b/Source/cmExportCommand.h
index 9382fcfa86..199a128a46 100644
--- a/Source/cmExportCommand.h
+++ b/Source/cmExportCommand.h
@@ -63,7 +63,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " export(TARGETS tgt1 tgt2 ... [PREFIX ] FILE "
+ " export(TARGETS tgt1 ... tgtN [PREFIX ] FILE "
"[APPEND])\n"
"Create a file that can be included into a CMake listfile with the "
"INCLUDE command. The file will contain a number of SET commands "
diff --git a/Source/cmExportLibraryDependencies.h b/Source/cmExportLibraryDependencies.h
index 8e23d2b871..ac091840e5 100644
--- a/Source/cmExportLibraryDependencies.h
+++ b/Source/cmExportLibraryDependencies.h
@@ -68,10 +68,10 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " export_library_dependencies(FILE [APPEND])\n"
- "Create a file that can be included into a CMake listfile with the "
- "INCLUDE command. The file will contain a number of SET commands "
- "that will set all the variables needed for library dependency "
+ " export_library_dependencies( [APPEND])\n"
+ "Create a file named that can be included into a CMake listfile "
+ "with the INCLUDE command. The file will contain a number of SET "
+ "commands that will set all the variables needed for library dependency "
"information. This should be the last command in the top level "
"CMakeLists.txt file of the project. If the APPEND option is "
"specified, the SET commands will be appended to the given file "
diff --git a/Source/cmOptionCommand.h b/Source/cmOptionCommand.h
index add4156f3d..c93c39eb40 100644
--- a/Source/cmOptionCommand.h
+++ b/Source/cmOptionCommand.h
@@ -60,7 +60,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " option(OPTION_VAR \"help string describing option\"\n"
+ " option( \"help string describing option\"\n"
" [initial value])\n"
"Provide an option for the user to select as ON or OFF. If no "
"initial value is provided, OFF is used.";
diff --git a/Source/cmSetCommand.h b/Source/cmSetCommand.h
index 73d7f0ff48..48b0642adc 100644
--- a/Source/cmSetCommand.h
+++ b/Source/cmSetCommand.h
@@ -65,25 +65,26 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " set(VAR [VALUE] [CACHE TYPE DOCSTRING [FORCE]])\n"
- "Within CMake sets VAR to the value VALUE. VALUE is expanded before "
- "VAR is set to it. If CACHE is present, then the VAR is put in the "
- "cache. TYPE and DOCSTRING are required. TYPE is used by the CMake GUI "
- "to choose a widget with which the user sets a value. The value for "
- "TYPE may be one of\n"
+ " set( [CACHE [FORCE]])\n"
+ "Within CMake sets to the value . is expanded"
+ " before is set to it. If CACHE is present, then the "
+ " is put in the cache. and are then "
+ "required. is used by the CMake GUI to choose a widget with "
+ "which the user sets a value. The value for may be one of\n"
" FILEPATH = File chooser dialog.\n"
" PATH = Directory chooser dialog.\n"
" STRING = Arbitrary string.\n"
" BOOL = Boolean ON/OFF checkbox.\n"
" INTERNAL = No GUI entry (used for persistent variables).\n"
- "If TYPE is INTERNAL, then the VALUE is always written into the cache, "
- "replacing any values existing in the cache. If it is not a cache "
- "variable, then this always writes into the current makefile. The "
+ "If is INTERNAL, then the is always written into the "
+ "cache, replacing any values existing in the cache. If it is not a "
+ "cache variable, then this always writes into the current makefile. The "
"FORCE option will overwrite the cache value removing any changes by "
"the user.\n"
- " set(VAR VALUE1 ... VALUEN).\n"
- "In this case VAR is set to a semicolon separated list of values.\n"
- "VAR can be an environment variable such as:\n"
+ " set( ... )\n"
+ "In this case is set to a semicolon separated list of "
+ "values.\n"
+ " can be an environment variable such as:\n"
" set( ENV{PATH} /home/martink )\n"
"in which case the environment variable will be set.";
}