]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 27 Apr 2025 01:35:52 +0000 (10:35 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 27 Apr 2025 01:36:12 +0000 (10:36 +0900)
NEWS
docs/OSC-CONTEXT.md
man/nss-systemd.xml
man/systemd-cgtop.xml
man/systemd.exec.xml
src/core/main.c
src/core/unit.h

diff --git a/NEWS b/NEWS
index 147e5511a218d36dca37dc13c8902f6f0efef6ad..8f6f77c70d0fa0755c21b662e756187e9e5e769b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7017,7 +7017,7 @@ CHANGES WITH 248:
         * When resolving host names and other records resolvectl will now
           report where the data was acquired from (i.e. the local cache, the
           network, locally synthesized, …) and whether the network traffic it
-          effected was encrypted or not. Moreover the tool acquired a number of
+          affected was encrypted or not. Moreover the tool acquired a number of
           new options --cache=, --synthesize=, --network=, --zone=,
           --trust-anchor=, --validate= that take booleans and may be used to
           tweak a lookup, i.e. whether it may be answered from cached
@@ -7151,7 +7151,7 @@ CHANGES WITH 248:
           set-property". Once a marker is set, "systemctl reload-or-restart
           --marked" may be invoked to execute the operation the units are
           marked for. This is useful for package managers that want to mark
-          units for restart/reload while updating, but effect the actual
+          units for restart/reload while updating, but affect the actual
           operations at a later step at once.
 
         * The sd_bus_message_read_strv() API call of sd-bus may now also be
index 52ccb032844bf449444f39c24e1b29fb6ea313a1..db06458f10da4fe41c82a0f30aa0355661c0e98b 100644 (file)
@@ -198,7 +198,7 @@ contexts be discarded, not the opposite). Overly long fields should be
 discarded (or potentially truncated, depending on the field type). This
 specification does not recommend any specific stack or string limits for now.
 
-The usual terminal reset sequences should *not* effect the stack of contexts
+The usual terminal reset sequences should *not* affect the stack of contexts
 (this is a safety feature: a program down the stack should not be able to
 affect the stack further up, possibly hiding relevant information). A temporary
 TTY hangup (`vhangup()`) should result in a full reset of the stack.
index fc887cacacd116b9f8f5527aa1c0390456fa769a..ff4416c25826927d071aeb49b9bf3316ac4b03e2 100644 (file)
@@ -100,7 +100,7 @@ lrwxrwxrwx. 1 root root   19 May 10 4711.user-privileged -> foobar.user-privileg
     <literal><replaceable>username</replaceable>:<replaceable>groupname</replaceable>.membership</literal>
     should be created, i.e. the textual UNIX user name, followed by a colon, followed by the textual UNIX
     group name, suffixed by <literal>.membership</literal>. The contents of these files are currently not
-    read, and the files should be created empty. The mere existence of these files is enough to effect a
+    read, and the files should be created empty. The mere existence of these files is enough to affect a
     user/group membership. If a program provides user and/or group record files in the searched directories,
     it should always also create such files, both for primary and auxiliary group memberships.</para>
 
index 5b5ab5b73609691f55cb165fe3aebf19d76e8384..9ed60e2edc6adc06cae398d19cd77f158d705397 100644 (file)
         pressing the <keycap>r</keycap> key. Note that this setting
         only applies to process counting, i.e. when the
         <option>-P</option> or <option>-k</option> options are
-        used. It has not effect if all tasks are counted, in which
+        used. It has no effect if all tasks are counted, in which
         case the counting is always recursive.</para>
 
         <xi:include href="version-info.xml" xpointer="v226"/></listitem>
index ce76fb793b21f357bcea25668259e30bae238f72..c57fd2e5d3b0f203f4e92009b37e93d0ac01d79c 100644 (file)
@@ -2131,7 +2131,7 @@ BindReadOnlyPaths=/var/lib/systemd</programlisting>
         services need to write to these at runtime; it is hence recommended to turn this on for most services. For this
         setting the same restrictions regarding mount propagation and privileges apply as for
         <varname>ReadOnlyPaths=</varname> and related calls, see above. Defaults to off.
-        Note that this option does not prevent indirect changes to kernel tunables effected by IPC calls to
+        Note that this option does not prevent indirect changes to kernel tunables affected by IPC calls to
         other processes. However, <varname>InaccessiblePaths=</varname> may be used to make relevant IPC file system
         objects inaccessible. If <varname>ProtectKernelTunables=</varname> is set,
         <varname>MountAPIVFS=yes</varname> is implied.</para>
index 2d7f574fec98b9be3d0cc85e9a57e3597cd53a9a..affffb667fef4bd73f4992bada85d9904fe9f48c 100644 (file)
@@ -880,7 +880,7 @@ static void set_manager_settings(Manager *m) {
         assert(m);
 
         /* Propagates the various manager settings into the manager object, i.e. properties that
-         * effect the manager itself (as opposed to just being inherited into newly allocated
+         * affect the manager itself (as opposed to just being inherited into newly allocated
          * units, see set_manager_defaults() above). */
 
         m->confirm_spawn = arg_confirm_spawn;
index d1a0e20a435ffd3698d8577cf6b8371e5858f10a..4102abd09187704dbb94ff55fa56d2dab7faa53e 100644 (file)
@@ -99,7 +99,7 @@ typedef enum UnitDependencyMask {
          * type) */
         UNIT_DEPENDENCY_IMPLICIT           = 1 << 1,
 
-        /* A dependency effected by DefaultDependencies=yes. Note that dependencies marked this way are conceptually
+        /* A dependency affected by DefaultDependencies=yes. Note that dependencies marked this way are conceptually
          * just a subset of UNIT_DEPENDENCY_FILE, as DefaultDependencies= is itself a unit file setting that can only
          * be set in unit files. We make this two separate bits only to help debugging how dependencies came to be. */
         UNIT_DEPENDENCY_DEFAULT            = 1 << 2,