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

Commit f2c8b88

Browse files
authored
Fix typo: eror -> error (#6293)
1 parent f0eef06 commit f2c8b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/db/src/parity_db.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fn handle_err<T>(result: parity_db::Result<T>) -> T {
2727
match result {
2828
Ok(r) => r,
2929
Err(e) => {
30-
panic!("Critical database eror: {:?}", e);
30+
panic!("Critical database error: {:?}", e);
3131
}
3232
}
3333
}

0 commit comments

Comments
 (0)