From 800a88de73b89926129c63276f133d0f3d375d4a Mon Sep 17 00:00:00 2001 From: Derek Mauro Date: Mon, 6 Jun 2022 11:17:43 -0700 Subject: Fix comment typo about absl::Status PiperOrigin-RevId: 453241556 Change-Id: Ia92d737b6a678e3a4eda965056503392af44486a --- absl/status/statusor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'absl/status') 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` 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` generally requires a bit more care, to ensure both that a -// value is present and that value is not null: +// `absl::StatusOr` generally requires a bit more care, to ensure both that +// a value is present and that value is not null: // // StatusOr> result = FooFactory::MakeNewFoo(arg); // if (!result.ok()) { -- cgit v1.2.3