diff options
author | Andreas Mohr <andim2@users.sourceforge.net> | 2013-05-01 11:36:14 +0200 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-05-07 08:39:19 -0400 |
commit | ddac8d3d2d027dd50d729918078f57628855a568 (patch) | |
tree | 7bbc6c5b721a4db2620c7e28c0eb22f072b16b4b /Source/cmFileCommand.cxx | |
parent | 86832cecd59b3a56c5a609742b43e5b1c9524c66 (diff) | |
download | cmake-ddac8d3d2d027dd50d729918078f57628855a568.tar.gz |
Fix spelling and typos (affecting binary data / module messages)
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 018ce7ecd2..2e6f3e0096 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1970,7 +1970,7 @@ bool cmFileInstaller else { cmOStringStream e; - e << "Option TYPE given uknown value \"" << stype << "\"."; + e << "Option TYPE given unknown value \"" << stype << "\"."; this->FileCommand->SetError(e.str().c_str()); return false; } @@ -1985,7 +1985,7 @@ bool cmFileInstaller::HandleInstallDestination() // allow for / to be a valid destination if ( destination.size() < 2 && destination != "/" ) { - this->FileCommand->SetError("called with inapropriate arguments. " + this->FileCommand->SetError("called with inappropriate arguments. " "No DESTINATION provided or ."); return false; } |