STYLE: fix docs

This commit is contained in:
Ken Martin 2005-11-16 10:37:02 -05:00
parent e3b06f10dd
commit 0629e2561c
8 changed files with 12 additions and 12 deletions

View File

@ -72,7 +72,7 @@ public:
"variables. If @ONLY is specified, only variables " "variables. If @ONLY is specified, only variables "
"of the form @VAR@ will be replaces and ${VAR} will be ignored. " "of the form @VAR@ will be replaces and ${VAR} will be ignored. "
"This is useful for configuring scripts that use ${VAR}. " "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 " "either #define VAR or /* #undef VAR */ depending on "
"the setting of VAR in CMake"; "the setting of VAR in CMake";
} }

View File

@ -68,12 +68,12 @@ public:
"a single executable. This is useful when building static executables " "a single executable. This is useful when building static executables "
"with large libraries to shrink the total required size. " "with large libraries to shrink the total required size. "
"The list of source files " "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 " "DriverName is the name of the test driver program. The rest of "
"the arguments consist of a list of test source files, can be " "the arguments consist of a list of test source files, can be "
"; separated. Each test source file should have a function in it that " "semicolon separated. Each test source file should have a function in "
"is the same name as the file with no extension (foo.cxx should have " "it that is the same name as the file with no extension (foo.cxx should "
"int foo();) DriverName will be able to call each of the tests by " "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 " "name on the command line. If EXTRA_INCLUDE is specified, then the "
"next argument is included into the generated file. If FUNCTION is " "next argument is included into the generated file. If FUNCTION is "
"specified, then the next argument is taken as a function name that " "specified, then the next argument is taken as a function name that "

View File

@ -66,7 +66,7 @@ public:
{ {
return return
" ELSE(expression)\n" " ELSE(expression)\n"
"See IF command."; "See the IF command.";
} }
cmTypeMacro(cmElseCommand, cmCommand); cmTypeMacro(cmElseCommand, cmCommand);

View File

@ -64,7 +64,7 @@ public:
{ {
return return
" ENABLE_LANGUAGE(languageName)\n" " 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); cmTypeMacro(cmEnableLanguageCommand, cmCommand);

View File

@ -70,9 +70,9 @@ public:
return return
" ENABLE_TESTING()\n" " ENABLE_TESTING()\n"
"Enables testing for this directory and below. " "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 " "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); cmTypeMacro(cmEnableTestingCommand, cmCommand);

View File

@ -72,7 +72,7 @@ public:
{ {
return return
" ENDFOREACH(expression)\n" " ENDFOREACH(expression)\n"
"See FOREACH command."; "See the FOREACH command.";
} }
cmTypeMacro(cmEndForEachCommand, cmCommand); cmTypeMacro(cmEndForEachCommand, cmCommand);

View File

@ -66,7 +66,7 @@ public:
{ {
return return
" ENDIF(expression)\n" " ENDIF(expression)\n"
"See IF command."; "See the IF command.";
} }
cmTypeMacro(cmEndIfCommand, cmCommand); cmTypeMacro(cmEndIfCommand, cmCommand);

View File

@ -72,7 +72,7 @@ public:
{ {
return return
" ENDWHILE(expression)\n" " ENDWHILE(expression)\n"
"See WHILE command."; "See the WHILE command.";
} }
cmTypeMacro(cmEndWhileCommand, cmCommand); cmTypeMacro(cmEndWhileCommand, cmCommand);