aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/bookmaker/spellCheck.cpp
diff options
context:
space:
mode:
authorGravatar Ben Wagner <bungeman@google.com>2017-10-09 15:45:33 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-10-09 21:20:34 +0000
commit63fd760a37905c45d26fc3d49cac261fad1b4808 (patch)
tree279aa7293ea1773ac60230790868fe0e1fc725b0 /tools/bookmaker/spellCheck.cpp
parenta49909aa24a370d6dff98d300d0c42ff8cd2c623 (diff)
Remove trailing whitespace.
Also adds a presubmit to prevent adding trailing whitespace to source code in the future. Change-Id: I41a4df81487f6f00aa19b188f0cac6a3377efde6 Reviewed-on: https://skia-review.googlesource.com/57380 Reviewed-by: Ravi Mistry <rmistry@google.com> Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'tools/bookmaker/spellCheck.cpp')
-rw-r--r--tools/bookmaker/spellCheck.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/bookmaker/spellCheck.cpp b/tools/bookmaker/spellCheck.cpp
index 6e80ee77c2..b2091640d0 100644
--- a/tools/bookmaker/spellCheck.cpp
+++ b/tools/bookmaker/spellCheck.cpp
@@ -10,7 +10,7 @@
#include "SkOSFile.h"
#include "SkOSPath.h"
-/*
+/*
things to do
if cap word is beginning of sentence, add it to table as lower-case
word must have only a single initial capital
@@ -428,7 +428,7 @@ void SpellCheck::leafCheck(const char* start, const char* end) {
case 'k': case 'l': case 'm': case 'n': case 'o':
case 'p': case 'q': case 'r': case 's': case 't':
case 'u': case 'v': case 'w': case 'x': case 'y':
- case 'z':
+ case 'z':
if (!wordStart) {
wordStart = chPtr;
wordEnd = nullptr;
@@ -441,7 +441,7 @@ void SpellCheck::leafCheck(const char* start, const char* end) {
break;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
- case '_':
+ case '_':
allLower = false;
case '-': // note that dash doesn't clear allLower
break;
@@ -603,7 +603,7 @@ void SpellCheck::wordCheck(const string& str) {
}
bool inCode = fInCode;
if (hasUnderscore && isupper(str[0]) && ('S' != str[0] || 'K' != str[1])
- && !hasColon && !hasDot && !hasParen && !fInStdOut && !inCode && !fInConst
+ && !hasColon && !hasDot && !hasParen && !fInStdOut && !inCode && !fInConst
&& !sawDigit && !sawSpecial && !sawDash) {
std::istringstream ss(str);
string token;
@@ -612,7 +612,7 @@ void SpellCheck::wordCheck(const string& str) {
}
return;
}
- if (!hasColon && !hasDot && !hasParen && !hasUnderscore
+ if (!hasColon && !hasDot && !hasParen && !hasUnderscore
&& !fInStdOut && !inCode && !fInConst && !sawDigit
&& islower(str[0]) && isupper(str[1])) {
inCode = true;
@@ -626,7 +626,7 @@ void SpellCheck::wordCheck(const string& str) {
}
}
}
- auto& mappy = hasColon ? fColons :
+ auto& mappy = hasColon ? fColons :
hasDot ? fDots :
hasParen ? fParens :
hasUnderscore ? fUnderscores :