]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 24 Sep 2022 01:43:58 +0000 (10:43 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 24 Sep 2022 01:43:58 +0000 (10:43 +0900)
man/systemd.unit.xml
src/boot/efi/efi-string.c
src/boot/efi/meson.build
src/core/device.c

index e29bb98540491991af341e7bb6c8027de086c76d..d502b6da1863671792153cee7f1808bbb7b78243 100644 (file)
       <citerefentry><refentrytitle>systemd.target</refentrytitle><manvolnum>5</manvolnum></citerefentry>
       for details. Note that this behavior can be opted out by setting
       <varname>DefaultDependencies=no</varname> in the specified units, or it can be selectively
-      overidden via an explicit <varname>Before=</varname> dependency.</para>
+      overridden via an explicit <varname>Before=</varname> dependency.</para>
     </refsect2>
   </refsect1>
 
index 6929e8667efedc0c0c7a1b1bcd506279898953d8..5c05dfeb06693383125dbc3bd43e848d55614fba 100644 (file)
@@ -278,7 +278,7 @@ DEFINE_PARSE_NUMBER(char16_t, parse_number16);
 #  undef memcpy
 #  undef memset
 #else
-/* And for userpsace unit testing we need to give them an efi_ prefix. */
+/* And for userspace unit testing we need to give them an efi_ prefix. */
 #  define memcmp efi_memcmp
 #  define memcpy efi_memcpy
 #  define memset efi_memset
index 19471309199e7b334ecfe46a7b905f04d86f12fd..22d28e4197b3287174c9ac6b06dfc232dec111ec 100644 (file)
@@ -204,7 +204,7 @@ efi_cflags = [
 # This only happens because the usual instructions for assembling a unified
 # kernel image contain hardcoded addresses for section VMAs added in. Until a
 # proper solution is in place, we can at least compile with as least -O1 to
-# reduce the likelyhood of this happening.
+# reduce the likelihood of this happening.
 # https://github.com/systemd/systemd/issues/24202
 efi_cflags += '-O1'
 
index a4fa8705410e24774239b6487e1f9ebd9db6e34f..224fc908355ae4ebde18231bf90d760bde8aa5f2 100644 (file)
@@ -909,7 +909,7 @@ static int device_setup_units(Manager *m, sd_device *dev, Set **ready_units, Set
         Unit *u;
         SET_FOREACH(u, *not_ready_units)
                 if (set_remove(*ready_units, u))
-                        log_unit_error(u, "Cannot active and deactive simultaneously. Deactivating.");
+                        log_unit_error(u, "Cannot activate and deactivate the unit simultaneously. Deactivating.");
 
         return 0;
 }