diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-08-14 09:27:30 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-09-04 13:11:26 +0200 |
commit | ada356208e153e088c729c102d5d79c9c9d66f1a (patch) | |
tree | f379a875fbf5208de2fe211c0f5c343bc1bc51f0 /src/streams.h | |
parent | 59ecacfc84af13e5a1608e7d970315d07dcb0269 (diff) |
Fix typos reported by codespell
Diffstat (limited to 'src/streams.h')
-rw-r--r-- | src/streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streams.h b/src/streams.h index d4a309be3c..dc20f7a9da 100644 --- a/src/streams.h +++ b/src/streams.h @@ -529,7 +529,7 @@ public: explicit BitStreamReader(IStream& istream) : m_istream(istream) {} /** Read the specified number of bits from the stream. The data is returned - * in the nbits least signficant bits of a 64-bit uint. + * in the nbits least significant bits of a 64-bit uint. */ uint64_t Read(int nbits) { if (nbits < 0 || nbits > 64) { |