Use `value` as argument name

This commit is contained in:
mejrs 2023-06-19 20:17:50 +02:00
parent 456efde245
commit b939849094
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ impl From<&'_ str> for Error {
}
impl From<std::convert::Infallible> for Error {
fn from(x: std::convert::Infallible) -> Self {
match x {}
fn from(value: std::convert::Infallible) -> Self {
match value {}
}
}