diff options
author | Ken Martin <ken.martin@kitware.com> | 2009-06-12 17:25:50 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2009-06-12 17:25:50 (GMT) |
commit | 133a778e2d1dfc05f372f3f33c7b677a1c49bbf3 (patch) | |
tree | de373b01cd800c94ad187568d1065e0bd859b3a3 /Source/cmIfCommand.h | |
parent | f50cf4f60d271c8a86de4a693f424b4eac402ab4 (diff) | |
download | CMake-133a778e2d1dfc05f372f3f33c7b677a1c49bbf3.zip CMake-133a778e2d1dfc05f372f3f33c7b677a1c49bbf3.tar.gz CMake-133a778e2d1dfc05f372f3f33c7b677a1c49bbf3.tar.bz2 |
ENH: clean up some help text
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r-- | Source/cmIfCommand.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index a55c982..243e4fc 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -194,15 +194,15 @@ public: "\n" "The if statement was written fairly early in CMake's history " - "and it has some convenience features that may be confusing for " - "new users. The if statement reduces operations until there is " + "and it has some convenience features that are worth covering. " + "The if statement reduces operations until there is " "a single remaining value, at that point if the case " "insensitive value is: ON, 1, YES, TRUE, Y it returns true, if " "it is OFF, 0, NO, FALSE, N, NOTFOUND, *-NOTFOUND, IGNORE it " "will return false. \n" - "This is fairly reasonable. The convenience feature that makes " - "it more confusing is how CMake handles values that do not " + "This is fairly reasonable. The convenience feature that sometimes " + "throws new authors is how CMake handles values that do not " "match the true or false list. Those values are treated as " "variables and are dereferenced even though they do not have " "the required ${} syntax. This means that if you write\n" |