am 340e62f0: Merge "Fix comment typo."

* commit '340e62f05e27c7665641e68c5d0654e310e251fb':
  Fix comment typo.
This commit is contained in:
Elliott Hughes 2015-04-18 00:28:51 +00:00 committed by Android Git Automerger
commit 3621ee6fdb

View file

@ -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"}
//