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