diff options
author | Abseil Team <absl-team@google.com> | 2022-04-29 05:43:43 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-04-29 05:45:27 -0700 |
commit | fad73ab077b846ff83e921ea1f5a6f831ea07ec2 (patch) | |
tree | 9d4cd08e5e42e698dface8a01c9ecc1cdccc1a0d /absl/status/statusor.h | |
parent | 731689ffc2ad7bb95cc86b5b6160dbe7858f27a0 (diff) |
Fix a typo in a comment.
PiperOrigin-RevId: 445394311
Change-Id: I265b6a83f79bbed4321e24e6da4730a2c43ddb07
Diffstat (limited to 'absl/status/statusor.h')
-rw-r--r-- | absl/status/statusor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/status/statusor.h b/absl/status/statusor.h index d6ebdc2b..a6d29110 100644 --- a/absl/status/statusor.h +++ b/absl/status/statusor.h @@ -477,7 +477,7 @@ class StatusOr : private internal_statusor::StatusOrData<T>, // StatusOr<T>::ok() // // Returns whether or not this `absl::StatusOr<T>` holds a `T` value. This - // member function is analagous to `absl::Status::ok()` and should be used + // member function is analogous to `absl::Status::ok()` and should be used // similarly to check the status of return values. // // Example: |