Fix typo.

This commit is contained in:
Nicolas Despres 2011-03-19 11:41:00 +01:00
parent d3d7e45df2
commit d0b3a7fa48
6 changed files with 8 additions and 8 deletions

View File

@ -90,7 +90,7 @@ public:
cmMakefile* mf); cmMakefile* mf);
/** /**
* Try running cmake and building a file. This is used for dynalically * Try running cmake and building a file. This is used for dynamically
* loaded commands, not as part of the usual build process. * loaded commands, not as part of the usual build process.
*/ */
virtual int TryCompile(const char *srcdir, const char *bindir, virtual int TryCompile(const char *srcdir, const char *bindir,

View File

@ -90,7 +90,7 @@ public:
void WriteHelpRule(std::ostream& ruleFileStream, void WriteHelpRule(std::ostream& ruleFileStream,
cmLocalUnixMakefileGenerator3 *); cmLocalUnixMakefileGenerator3 *);
// write the top lvel target rules // write the top level target rules
void WriteConvenienceRules(std::ostream& ruleFileStream, void WriteConvenienceRules(std::ostream& ruleFileStream,
std::set<cmStdString> &emitted); std::set<cmStdString> &emitted);

View File

@ -48,7 +48,7 @@ public:
cmMakefile *, bool optional); cmMakefile *, bool optional);
/** /**
* Try running cmake and building a file. This is used for dynalically * Try running cmake and building a file. This is used for dynamically
* loaded commands, not as part of the usual build process. * loaded commands, not as part of the usual build process.
*/ */
virtual std::string GenerateBuildCommand(const char* makeProgram, virtual std::string GenerateBuildCommand(const char* makeProgram,

View File

@ -25,7 +25,7 @@ class cmCustomCommand;
* \brief Create required build files for a directory. * \brief Create required build files for a directory.
* *
* Subclasses of this abstract class generate makefiles, DSP, etc for various * Subclasses of this abstract class generate makefiles, DSP, etc for various
* platforms. This class should never be constructued directly. A * platforms. This class should never be constructed directly. A
* GlobalGenerator will create it and invoke the appropriate commands on it. * GlobalGenerator will create it and invoke the appropriate commands on it.
*/ */
class cmLocalGenerator class cmLocalGenerator
@ -90,7 +90,7 @@ public:
void SetGlobalGenerator(cmGlobalGenerator *gg); void SetGlobalGenerator(cmGlobalGenerator *gg);
/** /**
* Convert something to something else. This is a centralized coversion * Convert something to something else. This is a centralized conversion
* routine used by the generators to handle relative paths and the like. * routine used by the generators to handle relative paths and the like.
* The flags determine what is actually done. * The flags determine what is actually done.
* *

View File

@ -161,7 +161,7 @@ public:
// used in writing out Cmake files such as WriteDirectoryInformation // used in writing out Cmake files such as WriteDirectoryInformation
static void WriteCMakeArgument(std::ostream& os, const char* s); static void WriteCMakeArgument(std::ostream& os, const char* s);
/** creates the common disclainer text at the top of each makefile */ /** creates the common disclaimer text at the top of each makefile */
void WriteDisclaimer(std::ostream& os); void WriteDisclaimer(std::ostream& os);
// write a comment line #====... in the stream // write a comment line #====... in the stream

View File

@ -2881,7 +2881,7 @@ int cmake::CheckBuildSystem()
return 1; return 1;
} }
// Find find the newest dependency. // Find the newest dependency.
std::vector<std::string>::iterator dep = depends.begin(); std::vector<std::string>::iterator dep = depends.begin();
std::string dep_newest = *dep++; std::string dep_newest = *dep++;
for(;dep != depends.end(); ++dep) for(;dep != depends.end(); ++dep)
@ -2907,7 +2907,7 @@ int cmake::CheckBuildSystem()
} }
} }
// Find find the oldest output. // Find the oldest output.
std::vector<std::string>::iterator out = outputs.begin(); std::vector<std::string>::iterator out = outputs.begin();
std::string out_oldest = *out++; std::string out_oldest = *out++;
for(;out != outputs.end(); ++out) for(;out != outputs.end(); ++out)