summaryrefslogtreecommitdiffstats
path: root/Source/cmIfCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-06-12 17:05:53 (GMT)
committerBrad King <brad.king@kitware.com>2006-06-12 17:05:53 (GMT)
commit54a7e0036b491c0f24aba550877c8ca494ea592f (patch)
tree3161896b8a14faad8a60696dd1907378efebe40c /Source/cmIfCommand.h
parentede1491f5abf47fd741ab73e9974a054eb03d266 (diff)
downloadCMake-54a7e0036b491c0f24aba550877c8ca494ea592f.zip
CMake-54a7e0036b491c0f24aba550877c8ca494ea592f.tar.gz
CMake-54a7e0036b491c0f24aba550877c8ca494ea592f.tar.bz2
BUG: Patch from Miguel A. Figueroa-Villanueva for fixing documentation.
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r--Source/cmIfCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h
index a8a7b81..59ee55b 100644
--- a/Source/cmIfCommand.h
+++ b/Source/cmIfCommand.h
@@ -123,12 +123,12 @@ public:
" IF(variable1 OR variable2)\n"
"True if either variable would be considered true individually.\n"
" IF(COMMAND command-name)\n"
- "True if the given name is a file or directory.\n"
+ "True if the given name is a command that can be invoked.\n"
" IF(EXISTS file-name)\n"
" IF(EXISTS directory-name)\n"
- "True if the given name is a directory.\n"
- " IF(IS_DIRECTORY directory-name)\n"
"True if the named file or directory exists.\n"
+ " IF(IS_DIRECTORY directory-name)\n"
+ "True if the given name is a directory.\n"
" IF(variable MATCHES regex)\n"
" IF(string MATCHES regex)\n"
"True if the given string or variable's value matches the given "