]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 25 Nov 2020 04:50:58 +0000 (13:50 +0900)
committerLennart Poettering <lennart@poettering.net>
Wed, 25 Nov 2020 08:48:17 +0000 (09:48 +0100)
NEWS
man/bootctl.xml
src/basic/escape.h

diff --git a/NEWS b/NEWS
index d2ed0e2cda2885f450b30e4f20aac78823463c29..4c22a9525eff81171ef6ecec0b3928e27a5299ba 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -102,16 +102,16 @@ CHANGES WITH 247 in spe:
           but do not handle the "change" action. If a device matching those
           rules is retriggered with the "change" action (as is intended here)
           it would suddenly lose the relevant properties. This always has been
-          a problematic, but as soon as all udev devices are triggered on
-          relevant package upgrades this will become particularly so. It is
-          strongly recommended to fix offending rules so that they can handle a
-          "change" action at any time, and acquire all necessary udev
-          properties even then. Or in other words: the header guard mentioned
-          above (ACTION=="remove",GOTO="xyz_end") is the correct approach to
-          handle this, as it makes sure rules are rerun on "change" correctly,
-          and acccumulate the correct and complete set of udev properties. udev
-          rule definitions that cannot handle "change" events being triggered
-          at arbitrary times should be considered buggy.
+          problematic, but as soon as all udev devices are triggered on relevant
+          package upgrades this will become particularly so. It is strongly
+          recommended to fix offending rules so that they can handle a "change"
+          action at any time, and acquire all necessary udev properties even
+          then. Or in other words: the header guard mentioned above
+          (ACTION=="remove",GOTO="xyz_end") is the correct approach to handle
+          this, as it makes sure rules are rerun on "change" correctly, and
+          accumulate the correct and complete set of udev properties. udev rule
+          definitions that cannot handle "change" events being triggered at
+          arbitrary times should be considered buggy.
 
         * The MountAPIVFS= service file setting now defaults to on if
           RootImage= and RootDirectory= are used, which means that with those
index e64c241b6d4622d61150793faf2680137d772fe3..878f24742e8e3f54c28ff4cab764800254880100 100644 (file)
         These special IDs are primarily useful as a quick way to persistently make the currently booted boot loader
         entry the default choice, or to upgrade the default boot loader entry for the next boot to the default boot
         loader entry for all future boots, but may be used for other operations too.
-        When an emptry string ("") is specified as an ID, then the corresponding EFI variable will be unset.
+        When an empty string ("") is specified as an ID, then the corresponding EFI variable will be unset.
         </para></listitem>
       </varlistentry>
 
index 15e4df7ca1d64f7658ff143088b59f06001fac67..691b6d802c296620f56a51dce15e004af93677f0 100644 (file)
@@ -16,7 +16,7 @@
 
 /* Those that can be escaped or double-quoted.
  *
- * Stricly speaking, ! does not need to be escaped, except in interactive
+ * Strictly speaking, ! does not need to be escaped, except in interactive
  * mode, but let's be extra nice to the user and quote ! in case this
  * output is ever used in interactive mode. */
 #define SHELL_NEED_QUOTES SHELL_NEED_ESCAPE GLOB_CHARS "'()<>|&;!"