ENH:Tweaks to documentation

This commit is contained in:
Will Schroeder 2001-01-12 12:49:49 -05:00
parent 675a0318de
commit b67bacd1be
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public:
virtual const char* FullDocumentation() virtual const char* FullDocumentation()
{ {
return return
"ADD_TARGET(Name \"command to run\");"; "ADD_TARGET(Name \"command to run\")";
} }
}; };

View File

@ -396,7 +396,7 @@ int cmMakefile::DumpDocumentationToFile(const char *fileName)
terse = (*j).second->TerseDocumentation(); terse = (*j).second->TerseDocumentation();
full = (*j).second->FullDocumentation(); full = (*j).second->FullDocumentation();
f << name << " - " << terse << std::endl f << name << " - " << terse << std::endl
<< "\t" << full << std::endl << std::endl; << "Usage: " << full << std::endl << std::endl;
} }