summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-17 17:08:16 -0700
committerElliott Hughes <enh@google.com>2015-04-17 17:08:16 -0700
commit1daf86aa208d99e11365c17c3e8701c1be4dccac (patch)
tree817e851cb31bc9a23b066099240d39ed8f6ee5dd /base
parent8d2abbea76f13b76ef814ff426d88f70526f6923 (diff)
downloadsystem_core-1daf86aa208d99e11365c17c3e8701c1be4dccac.zip
system_core-1daf86aa208d99e11365c17c3e8701c1be4dccac.tar.gz
system_core-1daf86aa208d99e11365c17c3e8701c1be4dccac.tar.bz2
Fix comment typo.
Change-Id: I2d7082c44123e90d74b2669ab29d787b9aa64863
Diffstat (limited to 'base')
-rw-r--r--base/include/base/strings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/include/base/strings.h b/base/include/base/strings.h
index ab56aad..3559342 100644
--- a/base/include/base/strings.h
+++ b/base/include/base/strings.h
@@ -25,7 +25,7 @@ namespace base {
// Splits a string into a vector of strings.
//
-// The string is split at each occurence of a character in delimiters.
+// The string is split at each occurrence of a character in delimiters.
//
// Empty splits will be omitted. I.e. Split("a,,b", ",") -> {"a", "b"}
//