From bcb0f8f9f0a8baeec77b0f1fce17762e9a4075a3 Mon Sep 17 00:00:00 2001 From: Subsocial <62490051+subsocialdev@users.noreply.github.com> Date: Mon, 8 Jun 2020 21:46:27 +0300 Subject: [PATCH] Fix typo: eror -> error --- client/db/src/parity_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/db/src/parity_db.rs b/client/db/src/parity_db.rs index ea25aaa9f89e3..ad1c6c7656aaa 100644 --- a/client/db/src/parity_db.rs +++ b/client/db/src/parity_db.rs @@ -27,7 +27,7 @@ fn handle_err(result: parity_db::Result) -> T { match result { Ok(r) => r, Err(e) => { - panic!("Critical database eror: {:?}", e); + panic!("Critical database error: {:?}", e); } } }