various: fix three spelling issues found by fossies

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2022-01-03 21:15:06 +01:00
parent df1f621bda
commit b36c5e9587
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# This configuration file can be used to auto-format the code base. # This configuration file can be used to auto-format the code base.
# Not all guidelines specified in CODING_STYLE are followed, so the # Not all guidelines specified in CODING_STYLE are followed, so the
# result MUST NOT be committed indiscriminately, but each automated # result MUST NOT be committed indiscriminately, but each automated
# change should be reviewed and only the appropriate ones commited. # change should be reviewed and only the appropriate ones committed.
# #
# The easiest way to apply the formatting to your changes ONLY, # The easiest way to apply the formatting to your changes ONLY,
# is to use the git-clang-format script (usually installed with clang-format). # is to use the git-clang-format script (usually installed with clang-format).

View file

@ -13,7 +13,7 @@ for ((i = 0; i < 5; i++)); do
EC=0 EC=0
(sudo python3 -m mkosi "$@") |& tee "$TEMPFILE" || EC=$? (sudo python3 -m mkosi "$@") |& tee "$TEMPFILE" || EC=$?
if [[ $EC -eq 0 ]]; then if [[ $EC -eq 0 ]]; then
# The command passed - let's return immediatelly # The command passed — let's return immediately
break break
fi fi
@ -23,7 +23,7 @@ for ((i = 0; i < 5; i++)); do
exit $EC exit $EC
fi fi
# The command failed due to the dissect-related timeout - let's try again # The command failed due to the dissect-related timeout let's try again
sleep 1 sleep 1
done done

View file

@ -32,7 +32,7 @@ static inline void EventClosep(EFI_EVENT *event) {
* Also, multiple input protocols can be backed by the same device, but they can be out of * Also, multiple input protocols can be backed by the same device, but they can be out of
* sync. Falling back on a different protocol can end up with double input. * sync. Falling back on a different protocol can end up with double input.
* *
* Therefore, we will perferrably use TextInputEx for ConIn if that is available. Additionally, * Therefore, we will preferably use TextInputEx for ConIn if that is available. Additionally,
* we look for the first TextInputEx device the firmware gives us as a fallback option. It * we look for the first TextInputEx device the firmware gives us as a fallback option. It
* will replace ConInEx permanently if it ever reports a key press. * will replace ConInEx permanently if it ever reports a key press.
* Lastly, a timer event allows us to provide a input timeout without having to call into * Lastly, a timer event allows us to provide a input timeout without having to call into