ENH:Tweaks to documentation
This commit is contained in:
parent
675a0318de
commit
b67bacd1be
|
@ -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\")";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue