Skip to content

Commit

Permalink
[omdb] typo fix in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher committed Dec 6, 2023
1 parent bcd7ac5 commit 3fbb980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/omdb/src/bin/omdb/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2477,8 +2477,8 @@ async fn cmd_db_inventory_collections_show(
eprintln!(
"warning: {} collection error{} {} reported above",
nerrors,
if nerrors == 1 { "was" } else { "were" },
if nerrors == 1 { "" } else { "s" }
if nerrors == 1 { "was" } else { "were" },
);
}

Expand Down

0 comments on commit 3fbb980

Please sign in to comment.