summaryrefslogtreecommitdiffstats
path: root/Source/cmEndWhileCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEndWhileCommand.h')
-rw-r--r--Source/cmEndWhileCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmEndWhileCommand.h b/Source/cmEndWhileCommand.h
index 28f0a13..da0a917 100644
--- a/Source/cmEndWhileCommand.h
+++ b/Source/cmEndWhileCommand.h
@@ -55,14 +55,14 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual const char* GetName() { return "ENDWHILE";}
+ virtual const char* GetName() { return "endwhile";}
/**
* Succinct documentation.
*/
virtual const char* GetTerseDocumentation()
{
- return "Ends a list of commands in a WHILE block.";
+ return "Ends a list of commands in a while block.";
}
/**
@@ -71,8 +71,8 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " ENDWHILE(expression)\n"
- "See the WHILE command.";
+ " endwhile(expression)\n"
+ "See the while command.";
}
cmTypeMacro(cmEndWhileCommand, cmCommand);