summaryrefslogtreecommitdiff
path: root/absl/strings/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/strings/match.h')
-rw-r--r--absl/strings/match.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/match.h b/absl/strings/match.h
index 3d54da81..6005533c 100644
--- a/absl/strings/match.h
+++ b/absl/strings/match.h
@@ -25,7 +25,7 @@
// Examples:
// std::string s = "foo";
// absl::string_view sv = "f";
-// EXPECT_TRUE(absl::StrContains(s, sv));
+// assert(absl::StrContains(s, sv));
//
// Note: The order of parameters in these functions is designed to mimic the
// order an equivalent member function would exhibit;