Skip to content

Commit aefbdf9

Browse files
committed
rustfmt
1 parent a9ed3da commit aefbdf9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/tokio/bufread/generic/decoder.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl<R: AsyncBufRead, D: Decode> Decoder<R, D> {
8989
} else {
9090
State::Decoding
9191
}
92-
},
92+
}
9393
Poll::Ready(input) => {
9494
let mut input = PartialBuffer::new(input?);
9595
let done = this.decoder.decode(&mut input, output)?;
@@ -105,7 +105,6 @@ impl<R: AsyncBufRead, D: Decode> Decoder<R, D> {
105105
}
106106
}
107107
}
108-
109108
}
110109

111110
State::Flushing => {

0 commit comments

Comments
 (0)