diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 08:48:16 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-20 08:48:16 +0000 |
commit | 739881f214ea8e0ce57636f8563d3dd9f59dcc4e (patch) | |
tree | d7197249da81da4fe30442f194b79232fa9d1794 /base/strings | |
parent | ad92674f6bde044e399622b17f564c7c43793145 (diff) | |
download | chromium_src-739881f214ea8e0ce57636f8563d3dd9f59dcc4e.zip chromium_src-739881f214ea8e0ce57636f8563d3dd9f59dcc4e.tar.gz chromium_src-739881f214ea8e0ce57636f8563d3dd9f59dcc4e.tar.bz2 |
Cleanup: Fix a typo in string_split.h.
Review URL: https://codereview.chromium.org/77553002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/strings')
-rw-r--r-- | base/strings/string_split.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/strings/string_split.h b/base/strings/string_split.h index faf08d6..7c27e48 100644 --- a/base/strings/string_split.h +++ b/base/strings/string_split.h @@ -14,9 +14,9 @@ namespace base { -// Splits |str| into a vector of strings delimited by |s|, placing the results -// in |r|. If several instances of |s| are contiguous, or if |str| begins with -// or ends with |s|, then an empty string is inserted. +// Splits |str| into a vector of strings delimited by |c|, placing the results +// in |r|. If several instances of |c| are contiguous, or if |str| begins with +// or ends with |c|, then an empty string is inserted. // // Every substring is trimmed of any leading or trailing white space. // NOTE: |c| must be in BMP (Basic Multilingual Plane) |