summaryrefslogtreecommitdiffstats
path: root/Source/cmVisualStudioGeneratorOptions.cxx
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2018-04-22 21:42:51 (GMT)
committerCraig Scott <craig.scott@crascit.com>2018-04-22 21:48:03 (GMT)
commit8e841a473f1e037d3e8102a23281a593afa2daab (patch)
tree43c577a6ebc02d55e92024304e0a6be34b5b2010 /Source/cmVisualStudioGeneratorOptions.cxx
parentfe0082875aeecead23b2351629abca4990dfba43 (diff)
downloadCMake-8e841a473f1e037d3e8102a23281a593afa2daab.zip
CMake-8e841a473f1e037d3e8102a23281a593afa2daab.tar.gz
CMake-8e841a473f1e037d3e8102a23281a593afa2daab.tar.bz2
Cleanup: Fix typos and grammar in docs and code
No functional changes, just docs, comments and error messages.
Diffstat (limited to 'Source/cmVisualStudioGeneratorOptions.cxx')
-rw-r--r--Source/cmVisualStudioGeneratorOptions.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmVisualStudioGeneratorOptions.cxx b/Source/cmVisualStudioGeneratorOptions.cxx
index 8b6f057..5cf9a08 100644
--- a/Source/cmVisualStudioGeneratorOptions.cxx
+++ b/Source/cmVisualStudioGeneratorOptions.cxx
@@ -127,7 +127,7 @@ bool cmVisualStudioGeneratorOptions::IsManaged() const
bool cmVisualStudioGeneratorOptions::UsingUnicode() const
{
- // Look for the a _UNICODE definition.
+ // Look for a _UNICODE definition.
for (std::string const& di : this->Defines) {
if (di == "_UNICODE") {
return true;
@@ -137,7 +137,7 @@ bool cmVisualStudioGeneratorOptions::UsingUnicode() const
}
bool cmVisualStudioGeneratorOptions::UsingSBCS() const
{
- // Look for the a _SBCS definition.
+ // Look for a _SBCS definition.
for (std::string const& di : this->Defines) {
if (di == "_SBCS") {
return true;