Bläddra i källkod

ENH:Tweaks to documentation

Will Schroeder 25 år sedan
förälder
incheckning
b67bacd1be
2 ändrade filer med 2 tillägg och 2 borttagningar
  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()
     {
     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();
     full = (*j).second->FullDocumentation();
     f << name << " - " << terse << std::endl
-      << "\t" << full << std::endl << std::endl;
+      << "Usage: " << full << std::endl << std::endl;
     }