style: formatting

This commit is contained in:
2024-08-22 22:06:01 +02:00
parent 4f3d46646a
commit 4fce731b60
3 changed files with 24 additions and 12 deletions

View File

@ -37,7 +37,7 @@ impl<T: Display> Display for ErrorVec<T> {
impl<T> FromStr for ErrorVec<T> {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
fn from_str(_: &str) -> Result<Self, Self::Err> {
Ok(ErrorVec { errors: Vec::new() })
}
}