diff options
author | Ken Martin <ken.martin@kitware.com> | 2009-02-16 18:56:04 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2009-02-16 18:56:04 (GMT) |
commit | ad25cf8d17f075c9688bfc16e41bdf2c67c64e64 (patch) | |
tree | d651a5a7b6754bdb1e04fbed8e5ff43ca5ac5542 /Source/cmIfCommand.h | |
parent | 50ec299708acda3172df09280e6716f50a2a20f8 (diff) | |
download | CMake-ad25cf8d17f075c9688bfc16e41bdf2c67c64e64.zip CMake-ad25cf8d17f075c9688bfc16e41bdf2c67c64e64.tar.gz CMake-ad25cf8d17f075c9688bfc16e41bdf2c67c64e64.tar.bz2 |
ENH: fix style
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r-- | Source/cmIfCommand.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index 58c2992..68d0f67 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -119,9 +119,10 @@ public: "else section are invoked. The elseif and else sections are " "optional. You may have multiple elseif clauses. Note that " "the expression in the else and endif clause is optional. Long " - "expressions can be used and there is a traditional order of precedence. " - "Parenthetical expressions are evaluated first followed by unary operators " - "such as EXISTS, COMMAND, and DEFINED. " + "expressions can be used and there is a traditional order of " + "precedence. " + "Parenthetical expressions are evaluated first followed by unary " + "operators such as EXISTS, COMMAND, and DEFINED. " "Then any EQUAL, LESS, GREATER, STRLESS, STRGREATER, STREQUAL, MATCHES " "will be evaluated. Then NOT operators and finally AND, OR operators " "will be evaluated. Possible expressions are:\n" @@ -185,9 +186,10 @@ public: "True if the given variable is defined. It does not matter if the " "variable is true or false just if it has been set.\n" " if((expression) AND (expression OR (expression)))\n" - "The expressions inside the parenthesis are evaluated first and then the remaining " - "expression is evaluated as in the previous examples. Where there are nested " - "parenthesis the innermost are evaluated as part of evaluating the expression " + "The expressions inside the parenthesis are evaluated first and " + "then the remaining expression is evaluated as in the previous " + "examples. Where there are nested parenthesis the innermost are " + "evaluated as part of evaluating the expression " "that contains them." ; } |