Fix typo: eror -> error (#6293)

This commit is contained in:
Subsocial
2020-06-08 22:32:42 +03:00
committed by GitHub
parent 73851943c5
commit 3e465a153b
+1 -1
View File
@@ -27,7 +27,7 @@ fn handle_err<T>(result: parity_db::Result<T>) -> T {
match result {
Ok(r) => r,
Err(e) => {
panic!("Critical database eror: {:?}", e);
panic!("Critical database error: {:?}", e);
}
}
}