summaryrefslogtreecommitdiffstats
path: root/chrome/tools/convert_dict/dic_reader.cc
diff options
context:
space:
mode:
authorrouslan@chromium.org <rouslan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:16:00 +0000
committerrouslan@chromium.org <rouslan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:16:00 +0000
commitb884a403913853bb73bf90586d17ee04aa5636f8 (patch)
tree21f98296ef9b22aec00f2ea8e2b9c4a300f134f7 /chrome/tools/convert_dict/dic_reader.cc
parent51b20ea7585ddc7c81a6ba2056cdde996b749fba (diff)
downloadchromium_src-b884a403913853bb73bf90586d17ee04aa5636f8.zip
chromium_src-b884a403913853bb73bf90586d17ee04aa5636f8.tar.gz
chromium_src-b884a403913853bb73bf90586d17ee04aa5636f8.tar.bz2
Unit test for spellchecking 96- through 102-character words
This patch adds a test for checking the spelling of words that are from 96 to 102 characters in length. Hunspell should mark the words in the test as misspelled and provide no suggestions. The corresponding change in src/third_party/hunspell: http://codereview.chromium.org/11778031. BUG=130128 Review URL: https://chromiumcodereview.appspot.com/11776032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176242 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools/convert_dict/dic_reader.cc')
-rw-r--r--chrome/tools/convert_dict/dic_reader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/convert_dict/dic_reader.cc b/chrome/tools/convert_dict/dic_reader.cc
index 5ed5cfa..e7a1a71 100644
--- a/chrome/tools/convert_dict/dic_reader.cc
+++ b/chrome/tools/convert_dict/dic_reader.cc
@@ -20,7 +20,7 @@ namespace {
typedef std::map<std::string, std::set<int> > WordSet;
void SplitDicLine(const std::string& line, std::vector<std::string>* output) {
- // We split the line on a slash not preceeded by a backslash. A slash at the
+ // We split the line on a slash not preceded by a backslash. A slash at the
// beginning of the line is not a separator either.
size_t slash_index = line.size();
for (size_t i = 0; i < line.size(); i++) {