summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Schroeder <will.schroeder@kitware.com>2001-01-12 17:49:49 (GMT)
committerWill Schroeder <will.schroeder@kitware.com>2001-01-12 17:49:49 (GMT)
commitb67bacd1be4cbf64857c008e36a40ccb0c300948 (patch)
treeb9311d9759ddd6284ed7687010c1f764ab873262
parent675a0318de72de848bbc88d4c8128ed78ae88206 (diff)
downloadCMake-b67bacd1be4cbf64857c008e36a40ccb0c300948.zip
CMake-b67bacd1be4cbf64857c008e36a40ccb0c300948.tar.gz
CMake-b67bacd1be4cbf64857c008e36a40ccb0c300948.tar.bz2
ENH:Tweaks to documentation
-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;
}