Typo fix: eror => error (#7773)

This commit is contained in:
Bruno Škvorc
2020-12-21 20:52:57 +01:00
committed by GitHub
parent ce97b6e5c4
commit 29498f4cbe
+1 -1
View File
@@ -27,7 +27,7 @@ fn handle_err<T>(result: std::io::Result<T>) -> T {
match result {
Ok(r) => r,
Err(e) => {
panic!("Critical database eror: {:?}", e);
panic!("Critical database error: {:?}", e);
}
}
}