mirror of
https://github.com/CDrummond/bliss-analyser.git
synced 2025-04-08 05:00:02 +03:00
Typos
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
c51de47696
commit
182d980395
@ -91,7 +91,7 @@ impl Db {
|
||||
[],
|
||||
);
|
||||
|
||||
if let Err(e) = cmd {
|
||||
if cmd.is_err() {
|
||||
log::error!("Failed to create DB table");
|
||||
process::exit(-1);
|
||||
}
|
||||
@ -101,7 +101,7 @@ impl Db {
|
||||
[],
|
||||
);
|
||||
|
||||
if let Err(e) = cmd {
|
||||
if cmd.is_err() {
|
||||
log::error!("Failed to create DB index");
|
||||
process::exit(-1);
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ fn main() {
|
||||
logging
|
||||
);
|
||||
let ignore_file_help = format!(
|
||||
"File containg items to mark as ignored. (default: {})",
|
||||
"File contains items to mark as ignored. (default: {})",
|
||||
ignore_file
|
||||
);
|
||||
let lms_host_help = format!("LMS hostname or IP address (default: {})", &lms_host);
|
||||
|
Loading…
x
Reference in New Issue
Block a user