Skip to content

Commit 3423d65

Browse files
committed
Fix some docs weirdness with default implementations
1 parent c46211e commit 3423d65

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

Sources/BitReader.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ public protocol BitReader: class {
4848
extension BitReader {
4949

5050
/**
51-
Reads `count` bits and returns them as an array of `UInt8`, advancing by `count` BIT positions.
52-
5351
- Warning: Doesn't check if there is any data left.
5452
*/
5553
public func bits(count: Int) -> [UInt8] {

Sources/BitWriter.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ public protocol BitWriter {
3939

4040
extension BitWriter {
4141

42-
/// Writes `bits`, advancing by `bits.count` BIT positions.
4342
public func write(bits: [UInt8]) {
4443
for bit in bits {
4544
self.write(bit: bit)

0 commit comments

Comments
 (0)