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 highlighted_suggestion = {
let deffirence = highlight_difference(&shell, &suggestion, &last_command); let difference = highlight_difference(&shell, &suggestion, &last_command);
if deffirence.is_none() { if difference.is_none() {
break; break;
}; };
deffirence.unwrap() difference.unwrap()
}; };
let execution = let execution =