STYLE: fix documentation for STRING(REPLACE) #5536

Alex
This commit is contained in:
Alexander Neundorf 2007-08-21 10:56:25 -04:00
parent 517a53e2d1
commit bf354fa308

View File

@ -71,8 +71,8 @@ public:
" STRING(REGEX REPLACE <regular_expression>\n" " STRING(REGEX REPLACE <regular_expression>\n"
" <replace_expression> <output variable>\n" " <replace_expression> <output variable>\n"
" <input> [<input>...])\n" " <input> [<input>...])\n"
" STRING(REPLACE <match_expression>\n" " STRING(REPLACE <match_string>\n"
" <replace_expression> <output variable>\n" " <replace_string> <output variable>\n"
" <input> [<input>...])\n" " <input> [<input>...])\n"
" STRING(COMPARE EQUAL <string1> <string2> <output variable>)\n" " STRING(COMPARE EQUAL <string1> <string2> <output variable>)\n"
" STRING(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n" " STRING(COMPARE NOTEQUAL <string1> <string2> <output variable>)\n"
@ -98,12 +98,8 @@ public:
"subexpressions of the match using \\1, \\2, ..., \\9. Note that " "subexpressions of the match using \\1, \\2, ..., \\9. Note that "
"two backslashes (\\\\1) are required in CMake code to get a " "two backslashes (\\\\1) are required in CMake code to get a "
"backslash through argument parsing.\n" "backslash through argument parsing.\n"
"REPLACE will match the given expression " "REPLACE will replace all occurences of match_string in the input with "
"and substitute the replacement expression for the match " "replace_string and store the result in the output.\n"
"in the output. The replace expression may refer to paren-delimited "
"subexpressions of the match using \\1, \\2, ..., \\9. Note that "
"two backslashes (\\\\1) are required in CMake code to get a "
"backslash through argument parsing.\n"
"COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and " "COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and "
"store true or false in the output variable.\n" "store true or false in the output variable.\n"
"ASCII will convert all numbers into corresponding ASCII characters.\n" "ASCII will convert all numbers into corresponding ASCII characters.\n"