Changes imported from Abseil "staging" branch:

- 50eadebdcad56fe50e8070b94497568c74175b28 Correct an example for StrSplit in the comments and chang... by Abseil Team <absl-team@google.com>

GitOrigin-RevId: 50eadebdcad56fe50e8070b94497568c74175b28
Change-Id: I2b12ce54e7d9db05ee15904801498f59e20e5d23
This commit is contained in:
Abseil Team 2018-03-08 14:35:36 -08:00 committed by Alex Strelnikov
parent 94f0f79ecd
commit 23ef7e1127
2 changed files with 14 additions and 14 deletions

View file

@ -402,7 +402,7 @@ struct SkipWhitespace {
//
// std::vector<std::string> v = absl::StrSplit(" a , ,,b,",
// ',', SkipWhitespace());
// // v[0] == "a", v[1] == "b"
// // v[0] == " a ", v[1] == "b"
//
// See above for more information on predicates.
//