diff options
Diffstat (limited to 'absl')
-rw-r--r-- | absl/status/statusor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/status/statusor.h b/absl/status/statusor.h index a6d29110..a76e7201 100644 --- a/absl/status/statusor.h +++ b/absl/status/statusor.h @@ -162,8 +162,8 @@ class ABSL_MUST_USE_RESULT StatusOr; // A `absl::StatusOr<T*>` can be constructed from a null pointer like any other // pointer value, and the result will be that `ok()` returns `true` and // `value()` returns `nullptr`. Checking the value of pointer in an -// `absl::StatusOr<T>` generally requires a bit more care, to ensure both that a -// value is present and that value is not null: +// `absl::StatusOr<T*>` generally requires a bit more care, to ensure both that +// a value is present and that value is not null: // // StatusOr<std::unique_ptr<Foo>> result = FooFactory::MakeNewFoo(arg); // if (!result.ok()) { |