diff options
Diffstat (limited to 'absl/crc/internal/crc.h')
-rw-r--r-- | absl/crc/internal/crc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/crc/internal/crc.h b/absl/crc/internal/crc.h index 72515b06..08afba3c 100644 --- a/absl/crc/internal/crc.h +++ b/absl/crc/internal/crc.h @@ -53,7 +53,7 @@ class CRC { // points to an array of "length" zero bytes. virtual void ExtendByZeroes(uint32_t* crc, size_t length) const = 0; - // Inverse opration of ExtendByZeroes. If `crc` is the CRC value of a string + // Inverse operation of ExtendByZeroes. If `crc` is the CRC value of a string // ending in `length` zero bytes, this returns a CRC value of that string // with those zero bytes removed. virtual void UnextendByZeroes(uint32_t* crc, size_t length) const = 0; |