From 1fd58b69c62d1bb590a4860b0db30212b2fd2af4 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 29 Sep 2020 12:37:57 -0700 Subject: Export of internal Abseil changes -- dad7313f7e8c36c35fc213ce5110100595f90990 by Andy Getzendanner : Fix log_severity.h header guard to match path. PiperOrigin-RevId: 334439123 -- 8a58aa0f4171219d38fb49a2e008e249f86de4cb by Abseil Team : Minor comment cleanup PiperOrigin-RevId: 334409054 -- a1bc324e53c358b874f99b3f5624658fff99453e by Evan Brown : Cleanup in btree.h: - Combine internal_locate_impls and update comments. - Avoid use of auto with SearchResult. - Change one iterator reference to be stored by value (copy is cheap). PiperOrigin-RevId: 334396951 GitOrigin-RevId: dad7313f7e8c36c35fc213ce5110100595f90990 Change-Id: I79862795abd3169587f5bafe0e5369bdde90c1e1 --- absl/status/status.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'absl/status') diff --git a/absl/status/status.h b/absl/status/status.h index 42f634e0..c4d6fce0 100644 --- a/absl/status/status.h +++ b/absl/status/status.h @@ -98,7 +98,7 @@ enum class StatusCode : int { // StatusCode::kCancelled // - // kCanelled (gRPC code "CANCELLED") indicates the operation was cancelled, + // kCancelled (gRPC code "CANCELLED") indicates the operation was cancelled, // typically by the caller. kCancelled = 1, @@ -198,9 +198,9 @@ enum class StatusCode : int { // `kAborted`, and `kUnavailable`. kAborted = 10, - // StatusCode::kOutofRange + // StatusCode::kOutOfRange // - // kOutofRange (gRPC code "OUT_OF_RANGE") indicates the operation was + // kOutOfRange (gRPC code "OUT_OF_RANGE") indicates the operation was // attempted past the valid range, such as seeking or reading past an // end-of-file. // -- cgit v1.2.3