Tweaked BitBuffer.appendBits() comment in several language versions.

This commit is contained in:
Project Nayuki
2018-10-02 08:55:34 +00:00
parent 34408d66aa
commit dce44caf8f
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ class BitBuffer final : public std::vector<bool> {
// Appends the given number of low bits of the given value
// to this sequence. Requires 0 <= val < 2^len.
// to this sequence. Requires 0 <= len <= 31 and 0 <= val < 2^len.
public: void appendBits(std::uint32_t val, int len);
};