From b67bacd1be4cbf64857c008e36a40ccb0c300948 Mon Sep 17 00:00:00 2001 From: Will Schroeder Date: Fri, 12 Jan 2001 12:49:49 -0500 Subject: [PATCH] ENH:Tweaks to documentation --- Source/cmAddTargetRule.h | 2 +- Source/cmMakefile.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmAddTargetRule.h b/Source/cmAddTargetRule.h index afc595fd4..6272c3278 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 59f87c08f..28e603007 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; }