diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-10-15 18:50:18 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-10-15 18:50:18 (GMT) |
commit | b63ff2fb6f9e73c4d909c4b7fd5d07b25f916ce3 (patch) | |
tree | 89ba9f500e1b779e2e07abc40a57aa32b8bc4ff6 /Source/cmForEachCommand.h | |
parent | c8e832dcf5d1477192e19bf521f684c953d7751d (diff) | |
download | CMake-b63ff2fb6f9e73c4d909c4b7fd5d07b25f916ce3.zip CMake-b63ff2fb6f9e73c4d909c4b7fd5d07b25f916ce3.tar.gz CMake-b63ff2fb6f9e73c4d909c4b7fd5d07b25f916ce3.tar.bz2 |
ENH: minor doc cleanups and an example of documenting a variable
Diffstat (limited to 'Source/cmForEachCommand.h')
-rw-r--r-- | Source/cmForEachCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmForEachCommand.h b/Source/cmForEachCommand.h index 115c522..0e21094 100644 --- a/Source/cmForEachCommand.h +++ b/Source/cmForEachCommand.h @@ -93,11 +93,11 @@ public: " COMMAND1(ARGS ...)\n" " COMMAND2(ARGS ...)\n" " ...\n" - " ENDforeach(loop_var)\n" + " endforeach(loop_var)\n" " foreach(loop_var RANGE total)\n" " foreach(loop_var RANGE start stop [step])\n" - "All commands between foreach and the matching ENDforeach are recorded " - "without being invoked. Once the ENDforeach is evaluated, the " + "All commands between foreach and the matching endforeach are recorded " + "without being invoked. Once the endforeach is evaluated, the " "recorded list of commands is invoked once for each argument listed " "in the original foreach command. Before each iteration of the loop " "\"${loop_var}\" will be set as a variable with " |