Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix typo: eror -> error (#6293)
Browse files Browse the repository at this point in the history
  • Loading branch information
subsocialdev authored Jun 8, 2020
1 parent f0eef06 commit f2c8b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/db/src/parity_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down

0 comments on commit f2c8b88

Please sign in to comment.