Merge pull request #2302 from GeckoEidechse/fix/missing-plus

docs: Add missing `+` in diff code block
This commit is contained in:
Eric Huss 2024-01-30 19:55:05 +00:00 committed by GitHub
commit 220cb4f0c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ like this:
+ if cfg.deny_odds && num_words % 2 == 1 {
+ eprintln!("{} has an odd number of words!", ch.name);
+ process::exit(1);
}
+ }
}
}
}