From: Frantisek Sumsal Date: Fri, 1 May 2020 16:51:33 +0000 (+0200) Subject: man: fix few spelling errors X-Git-Tag: v246-rc1~459 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d4f8cf467b6825c91276808250823a29ab461fe;p=thirdparty%2Fsystemd.git man: fix few spelling errors Reported by Fossies.org. --- diff --git a/man/sd_bus_message_open_container.xml b/man/sd_bus_message_open_container.xml index 5f6e7c10e87..5a65518719d 100644 --- a/man/sd_bus_message_open_container.xml +++ b/man/sd_bus_message_open_container.xml @@ -63,7 +63,7 @@ sd_bus_message_append3 and similar functions. Containers behave like a stack. To nest containers inside each other, call sd_bus_message_open_container() multiple times without calling - sd_bus_message_close_container() inbetween. Each container will be nested inside the + sd_bus_message_close_container() in between. Each container will be nested inside the previous container. type represents the container type and should be one of r, a, v or e as described in sd_bus_message_append3. diff --git a/man/sd_notify.xml b/man/sd_notify.xml index 3e493862369..87b12c4bdff 100644 --- a/man/sd_notify.xml +++ b/man/sd_notify.xml @@ -272,7 +272,7 @@ BARRIER=1 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 + closing the file descriptor sent with this command. The service manager guarantees that the processing of a BARRIER=1 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, diff --git a/src/core/main.c b/src/core/main.c index b5e2ef747af..49879d8e376 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -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),