Fix typos and improve Radix

This commit is contained in:
Kiyomichi Kosaka
2025-05-23 13:47:58 +02:00
parent d4eeea73d8
commit ff4215fbab
2 changed files with 15 additions and 3 deletions
+2 -2
View File
@@ -228,7 +228,7 @@ impl<'a> LKEval<'a> {
};
}
}
Err(e) => out.e(format!("error: faild to parse command {}: {}", command, e.to_string())),
Err(e) => out.e(format!("error: failed to parse command {}: {}", command, e.to_string())),
};
}
@@ -330,7 +330,7 @@ impl<'a> LKEval<'a> {
} else {
match save_dump(&self.state.lock().borrow().db, &script) {
Ok(()) => out.o(format!("Passwords saved to file {}", script)),
Err(e) => out.e(format!("error: failed to dump passswords to {}: {}", script, e.to_string())),
Err(e) => out.e(format!("error: failed to dump passwords to {}: {}", script, e.to_string())),
};
}
}