Browse Source

ENH:Tweaks to documentation

Will Schroeder 25 years ago
parent
commit
b67bacd1be
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/cmAddTargetRule.h
  2. 1 1
      Source/cmMakefile.cxx

+ 1 - 1
Source/cmAddTargetRule.h

@@ -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\")";
     }
     }
 };
 };
 
 

+ 1 - 1
Source/cmMakefile.cxx

@@ -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;
     }
     }