]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
various: fix three spelling issues found by fossies
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 3 Jan 2022 20:15:06 +0000 (21:15 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 3 Jan 2022 20:16:06 +0000 (21:16 +0100)
.clang-format
.github/workflows/run_mkosi.sh
src/boot/efi/console.c

index 651249c701b4e63949034ed6aeabcb22faca3726..8d50be42e79ceef6297d6155b5e82a57e0e78e7b 100644 (file)
@@ -1,7 +1,7 @@
 # This configuration file can be used to auto-format the code base.
 # Not all guidelines specified in CODING_STYLE are followed, so the
 # 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,
 # is to use the git-clang-format script (usually installed with clang-format).
index e8803239aa6223a2d3b7d4dfefda0ce4214b313e..980fa1a96c6a5636d8d8472e9759a0219674b5cc 100755 (executable)
@@ -13,7 +13,7 @@ for ((i = 0; i < 5; i++)); do
     EC=0
     (sudo python3 -m mkosi "$@") |& tee "$TEMPFILE" || EC=$?
     if [[ $EC -eq 0 ]]; then
-        # The command passed - let's return immediatelly
+        # The command passed — let's return immediately
         break
     fi
 
@@ -23,7 +23,7 @@ for ((i = 0; i < 5; i++)); do
         exit $EC
     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
 done
 
index 89fbd94258749cc3dda3b7666fdb3450e5cc1a03..86cd15a23524a6180d7db677023bfb941ffb77fc 100644 (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
  * 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
  * 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