Skip to content

Commit ad32016

Browse files
authored
Update base64ct/src/decoder.rs
1 parent f9a9dc6 commit ad32016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base64ct/src/decoder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl<'i, E: Encoding> Decoder<'i, E> {
107107
pub fn decode<'o>(&mut self, out: &'o mut [u8]) -> Result<&'o [u8], Error> {
108108
if out.is_empty() {
109109
// We did not intend to read anything from the reader.
110-
return Ok(out)
110+
return Ok(out);
111111
}
112112

113113
if self.is_finished() {

0 commit comments

Comments
 (0)