Skip to content

Commit d917e2a

Browse files
authored
Merge pull request #3636 from mulkieran/fix-typo
Fix a typo in an error string
2 parents b21f309 + b1f4347 commit d917e2a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/bin/stratis-min/stratis-min.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ fn main() -> Result<(), String> {
246246
let prompt = args.get_flag("prompt");
247247
if prompt && unlock_method == Some(UnlockMethod::Clevis) {
248248
return Err(Box::new(StratisError::Msg(
249-
"--prompt and an unlock_method of clevis are mutally exclusive".to_string(),
249+
"--prompt and an unlock_method of clevis are mutually exclusive"
250+
.to_string(),
250251
)));
251252
}
252253
pool::pool_start(id, unlock_method, prompt)?;

0 commit comments

Comments
 (0)