diff options
author | Abseil Team <absl-team@google.com> | 2023-11-14 15:15:07 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-11-14 15:15:49 -0800 |
commit | 61ea5d253f152b3be61fcd836b9eaeda669a56a7 (patch) | |
tree | de87eb6777b3a1fa8d488043e641b06253bfef09 | |
parent | 67f3af264c5b32cb92bb72440220e03591128f40 (diff) |
Fixed a very small typo in the Cord::empty() docstring.
PiperOrigin-RevId: 582455513
Change-Id: Ic78d14d6dd748420a64e7026ec7f8b967bebbf42
-rw-r--r-- | absl/strings/cord.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/cord.h b/absl/strings/cord.h index af013df0..e8bb4f7f 100644 --- a/absl/strings/cord.h +++ b/absl/strings/cord.h @@ -361,7 +361,7 @@ class Cord { // Cord::empty() // - // Determines whether the given Cord is empty, returning `true` is so. + // Determines whether the given Cord is empty, returning `true` if so. bool empty() const; // Cord::EstimatedMemoryUsage() |