1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 16:55:08 +02:00

chore: avoid single char error bindings

This commit is contained in:
Rob Ede
2023-09-03 19:09:42 +01:00
parent d445742974
commit 215a52f565
19 changed files with 73 additions and 73 deletions

View File

@ -296,7 +296,7 @@ impl Decoder for Codec {
}
}
Ok(None) => Ok(None),
Err(e) => Err(e),
Err(err) => Err(err),
}
}
}