Skip to content

Commit

Permalink
Merge pull request #3636 from mulkieran/fix-typo
Browse files Browse the repository at this point in the history
Fix a typo in an error string
  • Loading branch information
mulkieran authored Jun 24, 2024
2 parents b21f309 + b1f4347 commit d917e2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bin/stratis-min/stratis-min.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ fn main() -> Result<(), String> {
let prompt = args.get_flag("prompt");
if prompt && unlock_method == Some(UnlockMethod::Clevis) {
return Err(Box::new(StratisError::Msg(
"--prompt and an unlock_method of clevis are mutally exclusive".to_string(),
"--prompt and an unlock_method of clevis are mutually exclusive"
.to_string(),
)));
}
pool::pool_start(id, unlock_method, prompt)?;
Expand Down

0 comments on commit d917e2a

Please sign in to comment.