summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/cmAddTargetRule.h2
-rw-r--r--Source/cmMakefile.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmAddTargetRule.h b/Source/cmAddTargetRule.h
index afc595f..6272c32 100644
--- a/Source/cmAddTargetRule.h
+++ b/Source/cmAddTargetRule.h
@@ -69,7 +69,7 @@ public:
virtual const char* FullDocumentation()
{
return
- "ADD_TARGET(Name \"command to run\");";
+ "ADD_TARGET(Name \"command to run\")";
}
};
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 59f87c0..28e6030 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -396,7 +396,7 @@ int cmMakefile::DumpDocumentationToFile(const char *fileName)
terse = (*j).second->TerseDocumentation();
full = (*j).second->FullDocumentation();
f << name << " - " << terse << std::endl
- << "\t" << full << std::endl << std::endl;
+ << "Usage: " << full << std::endl << std::endl;
}