fix: typo

This commit is contained in:
iff 2024-10-28 12:01:59 +01:00
parent bcd231da63
commit d1b59e984d

View file

@ -57,11 +57,11 @@ fn main() {
};
let highlighted_suggestion = {
let deffirence = highlight_difference(&shell, &suggestion, &last_command);
if deffirence.is_none() {
let difference = highlight_difference(&shell, &suggestion, &last_command);
if difference.is_none() {
break;
};
deffirence.unwrap()
difference.unwrap()
};
let execution =