]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
man: fix few spelling errors
authorFrantisek Sumsal <frantisek@sumsal.cz>
Fri, 1 May 2020 16:51:33 +0000 (18:51 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 3 May 2020 08:23:25 +0000 (10:23 +0200)
Reported by Fossies.org.

man/sd_bus_message_open_container.xml
man/sd_notify.xml
src/core/main.c

index 5f6e7c10e87d3a3d6779d3daa234455951b9e993..5a65518719d051887522c9118c76591f36878f88 100644 (file)
@@ -63,7 +63,7 @@
     <citerefentry><refentrytitle>sd_bus_message_append</refentrytitle><manvolnum>3</manvolnum></citerefentry>
     and similar functions. Containers behave like a stack. To nest containers inside each other, call
     <function>sd_bus_message_open_container()</function> multiple times without calling
-    <function>sd_bus_message_close_container()</function> inbetween. Each container will be nested inside the
+    <function>sd_bus_message_close_container()</function> in between. Each container will be nested inside the
     previous container. <parameter>type</parameter> represents the container type and should be one of
     <literal>r</literal>, <literal>a</literal>, <literal>v</literal> or <literal>e</literal> as described in
     <citerefentry><refentrytitle>sd_bus_message_append</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
index 3e49386236967fdd00c17f81dd88da41b52f5890..87b12c4bdff8b16ac28ffb67ac00a4421e371f75 100644 (file)
         <term>BARRIER=1</term>
 
         <listitem><para>Tells the service manager that the client is explicitly requesting synchronization by means of
-        closing the file descriptor sent with this command. The service manager gurantees that the processing of a <varname>
+        closing the file descriptor sent with this command. The service manager guarantees that the processing of a <varname>
         BARRIER=1</varname> command will only happen after all previous notification messages sent before this command
         have been processed. Hence, this command accompanied with a single file descriptor can be used to synchronize
         against reception of all previous status messages. Note that this command cannot be mixed with other notifications,
index b5e2ef747af6eeeda5282e993378b8690f8b5f28..49879d8e376b5eb981137a4b1a00e7ad2487fc0b 100644 (file)
@@ -1220,7 +1220,7 @@ static int bump_rlimit_memlock(struct rlimit *saved_rlimit) {
         assert_cc(RLIM_INFINITY > 0);
 
         mm = physical_memory() / 8; /* Let's scale how much we allow to be locked by the amount of physical
-                                     * RAM. We allow an eigth to be locked by us, just to pick a value. */
+                                     * RAM. We allow an eighth to be locked by us, just to pick a value. */
 
         new_rlimit = (struct rlimit) {
                 .rlim_cur = MAX3(HIGH_RLIMIT_MEMLOCK, saved_rlimit->rlim_cur, mm),