summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--absl/base/nullability.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/nullability.h b/absl/base/nullability.h
index 17553d0c..6f49b6f5 100644
--- a/absl/base/nullability.h
+++ b/absl/base/nullability.h
@@ -164,7 +164,7 @@ namespace absl {
// Example:
//
// // `employee` is designated as not null.
-// void PaySalary(absl::NotNull<Employee *> employee) {
+// void PaySalary(absl::Nonnull<Employee *> employee) {
// pay(*employee); // OK to dereference
// }
template <typename T>