aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/abseil-cpp/absl/strings/str_split.h
diff options
context:
space:
mode:
authorGravatar Marek Gilbert <mcg@google.com>2018-04-15 16:47:04 -0700
committerGravatar Marek Gilbert <mcg@google.com>2018-04-15 16:47:04 -0700
commitfdaf3cfa3c19c26b6764e78202877035011f8e81 (patch)
tree58b0a2f221932dbcb6b759b898863cc888ca825a /Firestore/third_party/abseil-cpp/absl/strings/str_split.h
parent5368c9e22f9a6b427466e9422645d688953013c0 (diff)
parentdfb5c04cf87fdff3c7fc16f9de3a2e8e1f4df265 (diff)
Merge branch 'abseil-update' into abseil-merge
Diffstat (limited to 'Firestore/third_party/abseil-cpp/absl/strings/str_split.h')
-rw-r--r--Firestore/third_party/abseil-cpp/absl/strings/str_split.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Firestore/third_party/abseil-cpp/absl/strings/str_split.h b/Firestore/third_party/abseil-cpp/absl/strings/str_split.h
index 5b3d6a8..1f089b9 100644
--- a/Firestore/third_party/abseil-cpp/absl/strings/str_split.h
+++ b/Firestore/third_party/abseil-cpp/absl/strings/str_split.h
@@ -208,7 +208,7 @@ class ByAnyChar {
// using absl::ByLength;
// std::vector<std::string> v = absl::StrSplit("12345", ByLength(2));
//
-// // v[0] == "12", v[1] == "35", v[2] == "5"
+// // v[0] == "12", v[1] == "34", v[2] == "5"
class ByLength {
public:
explicit ByLength(ptrdiff_t length);
@@ -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.
//