diff options
Diffstat (limited to 'src/utils/raw_bit_reader.h')
-rw-r--r-- | src/utils/raw_bit_reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/raw_bit_reader.h b/src/utils/raw_bit_reader.h index 76e7bfa..7d8ce8f 100644 --- a/src/utils/raw_bit_reader.h +++ b/src/utils/raw_bit_reader.h @@ -38,7 +38,7 @@ class RawBitReader : public BitReader, public Allocable { size_t* value); // le(n) in the spec. bool ReadUnsignedLeb128(size_t* value); // leb128() in the spec. // Reads a variable length unsigned number and stores it in |*value|. On a - // successful return, |*value| is in the range of 0 to UINT32_MAX − 1, + // successful return, |*value| is in the range of 0 to UINT32_MAX - 1, // inclusive. bool ReadUvlc(uint32_t* value); // uvlc() in the spec. bool Finished() const; |