diff options
author | Brad King <brad.king@kitware.com> | 2003-07-08 02:54:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-07-08 02:54:26 (GMT) |
commit | eb7b7dc1046dbc9d60e12a16d2ae3242328f85c0 (patch) | |
tree | 915febf821e068090efed5a754b6dc7e41440cd5 /Source/cmStringCommand.h | |
parent | 1cecf7b5aaa4a74a1a2a4545a9effda7cdc61879 (diff) | |
download | CMake-eb7b7dc1046dbc9d60e12a16d2ae3242328f85c0.zip CMake-eb7b7dc1046dbc9d60e12a16d2ae3242328f85c0.tar.gz CMake-eb7b7dc1046dbc9d60e12a16d2ae3242328f85c0.tar.bz2 |
BUG: Removed extra newlines from help text.
Diffstat (limited to 'Source/cmStringCommand.h')
-rw-r--r-- | Source/cmStringCommand.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index 7be05db..4968d5a 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -79,14 +79,14 @@ public: " STRING(COMPARE GREATER <string1> <string2> <output variable>)\n" " STRING(ASCII <number> [<number> ...] <output variable>)\n" "REGEX MATCH will match the regular expression once and store the " - "match in the output variable.\n\n" + "match in the output variable.\n" "REGEX MATCHALL will match the regular expression as many times as " - "possible and store the matches in the output variable as a list.\n\n" + "possible and store the matches in the output variable as a list.\n" "REGEX REPLACE will match the regular expression as many times as " "possible and substitute the replacement expression for the match " - "in the output.\n\n" + "in the output.\n" "COMPARE EQUAL/NOTEQUAL/LESS/GREATER will compare the strings and " - "store true or false in the output variable.\n\n" + "store true or false in the output variable.\n" "ASCII will convert all numbers into corresponding ASCII characters."; } |