Skip to content

Commit

Permalink
Fix a typo in an error string
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <[email protected]>
(cherry picked from commit b1f4347)
  • Loading branch information
mulkieran committed Jun 25, 2024
1 parent b25490c commit a8b0013
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 @@ -243,7 +243,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 a8b0013

Please sign in to comment.