diff options
author | Abseil Team <absl-team@google.com> | 2018-03-08T22·35-0800 |
---|---|---|
committer | Alex Strelnikov <strel@google.com> | 2018-03-12T16·43-0400 |
commit | 23ef7e11277a7a7709b70c362eea6b17cb932b34 (patch) | |
tree | b6956133802081f52e93791a7c3aa7a58691f0e7 /absl/strings/str_split.h | |
parent | 94f0f79ecd2d9e5271a21bc4ededea9b58c60674 (diff) |
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
Diffstat (limited to 'absl/strings/str_split.h')
-rw-r--r-- | absl/strings/str_split.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/str_split.h b/absl/strings/str_split.h index 713fdd0e6757..1f089b9377b2 100644 --- a/absl/strings/str_split.h +++ b/absl/strings/str_split.h @@ -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. // |