summaryrefslogtreecommitdiffstats
path: root/base/string_util.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-04 19:53:19 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-04 19:53:19 +0000
commit71055d30f11af1ad8427d7e96c105bf79010ab16 (patch)
tree7b5dbb895bec3d24853e6a99ff2619c8e337fcd4 /base/string_util.h
parent5a317d164f11b729e77b735bccf8e2f2a3c4d22d (diff)
downloadchromium_src-71055d30f11af1ad8427d7e96c105bf79010ab16.zip
chromium_src-71055d30f11af1ad8427d7e96c105bf79010ab16.tar.gz
chromium_src-71055d30f11af1ad8427d7e96c105bf79010ab16.tar.bz2
Typo fix.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6049009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70433 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_util.h')
-rw-r--r--base/string_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/string_util.h b/base/string_util.h
index f65652c..ed7adec 100644
--- a/base/string_util.h
+++ b/base/string_util.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -276,7 +276,7 @@ bool WideToLatin1(const std::wstring& wide, std::string* latin1);
// first case) or characters that use only 8-bits and whose 8-bit
// representation looks like a UTF-8 string (the second case).
//
-// Note that IsStringUTF8 checks not only if the input is structrually
+// Note that IsStringUTF8 checks not only if the input is structurally
// valid but also if it doesn't contain any non-character codepoint
// (e.g. U+FFFE). It's done on purpose because all the existing callers want
// to have the maximum 'discriminating' power from other encodings. If