summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorGeoff Viola <geoffrey.viola@autonomoussolutions.com>2014-10-09 23:22:45 (GMT)
committerBrad King <brad.king@kitware.com>2014-10-13 14:00:53 (GMT)
commitbef23e81815743b39d358d09878f4867dce17eea (patch)
tree040d301843699932d60ab852f731bde23ca67eee /Source/cmGlobalGenerator.cxx
parenta358448d3ebbb28bd2fd16b9dbed4d473867d20c (diff)
downloadCMake-bef23e81815743b39d358d09878f4867dce17eea.zip
CMake-bef23e81815743b39d358d09878f4867dce17eea.tar.gz
CMake-bef23e81815743b39d358d09878f4867dce17eea.tar.bz2
Fix some spelling errors in comments
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 6a4adc0..ae0e807 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -318,7 +318,7 @@ void cmGlobalGenerator::FindMakeProgram(cmMakefile* mf)
// will run xcodebuild and if it sees the error text file busy
// it will stop forwarding output, and let the build finish.
// Then it will retry the build. It will continue this
- // untill no text file busy errors occur.
+ // until no text file busy errors occur.
std::string cmakexbuild =
this->CMakeInstance->GetCacheManager()->GetCacheValue("CMAKE_COMMAND");
cmakexbuild = cmakexbuild.substr(0, cmakexbuild.length()-5);
@@ -1008,9 +1008,9 @@ void cmGlobalGenerator::SetLanguageEnabledMaps(const std::string& l,
if (sscanf(linkerPref, "%d", &preference)!=1)
{
// backward compatibility: before 2.6 LINKER_PREFERENCE
- // was either "None" or "Prefered", and only the first character was
+ // was either "None" or "Preferred", and only the first character was
// tested. So if there is a custom language out there and it is
- // "Prefered", set its preference high
+ // "Preferred", set its preference high
if (linkerPref[0]=='P')
{
preference = 100;