X Tutup
Skip to content

Commit 595bfe7

Browse files
mbieblpoettering
authored andcommitted
Various fixes for typos found by lintian (systemd#3705)
1 parent 037a3de commit 595bfe7

File tree

15 files changed

+18
-18
lines changed

15 files changed

+18
-18
lines changed

NEWS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ CHANGES WITH 228:
569569
the service.
570570

571571
* Timer units gained support for a new RemainAfterElapse=
572-
setting which takes a boolean argument. It defaults on,
572+
setting which takes a boolean argument. It defaults to on,
573573
exposing behaviour unchanged to previous releases. If set to
574574
off, timer units are unloaded after they elapsed if they
575575
cannot elapse again. This is particularly useful for
@@ -760,7 +760,7 @@ CHANGES WITH 227:
760760
* Support for USB FunctionFS activation has been added. This
761761
allows implementation of USB gadget services that are
762762
activated as soon as they are requested, so that they don't
763-
have to run continously, similar to classic socket
763+
have to run continuously, similar to classic socket
764764
activation.
765765

766766
* The "systemctl exit" command now optionally takes an

man/libudev.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<para>To introspect a local device on a system, a udev device
8282
object can be created via
8383
<citerefentry><refentrytitle>udev_device_new_from_syspath</refentrytitle><manvolnum>3</manvolnum></citerefentry>
84-
and friends. The device object allows to query current state,
84+
and friends. The device object allows one to query current state,
8585
read and write attributes and lookup properties of the device in
8686
question.</para>
8787

man/sd_event_add_time.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
regarding the various types of clocks. The <parameter>usec</parameter> parameter specifies the earliest time, in
124124
microseconds (µs), relative to the clock's epoch, when the timer shall be triggered. If a time already in the past
125125
is specified (including <constant>0</constant>), this timer source "fires" immediately and is ready to be
126-
dispatched. If the paramater is specified as <constant>UINT64_MAX</constant> the timer event will never elapse,
126+
dispatched. If the parameter is specified as <constant>UINT64_MAX</constant> the timer event will never elapse,
127127
which may be used as an alternative to explicitly disabling a timer event source with
128128
<citerefentry><refentrytitle>sd_event_source_set_enabled</refentrytitle><manvolnum>3</manvolnum></citerefentry>. The
129129
<parameter>accuracy</parameter> parameter specifies an additional accuracy value in µs specifying how much the

man/systemd-socket-activate.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<varname>FileDescriptorName=</varname> in socket unit files, and enables use of
143143
<citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
144144
Multiple entries may be specifies using separate options or by separating names with colons
145-
(<literal>:</literal>) in one option. In case more names are given than descriptors, superflous ones willl be
145+
(<literal>:</literal>) in one option. In case more names are given than descriptors, superfluous ones willl be
146146
ignored. In case less names are given than descriptors, the remaining file descriptors will be unnamed.
147147
</para></listitem>
148148
</varlistentry>

man/systemd.special.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
<citerefentry><refentrytitle>systemd-fstab-generator</refentrytitle><manvolnum>3</manvolnum></citerefentry>
474474
and
475475
<citerefentry><refentrytitle>systemd-gpt-auto-generator</refentrytitle><manvolnum>3</manvolnum></citerefentry>
476-
automatically setup the appropiate dependencies to make this happen.
476+
automatically setup the appropriate dependencies to make this happen.
477477
</para>
478478
</listitem>
479479
</varlistentry>

man/systemd.timer.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777
<para>Note that in case the unit to activate is already active at the time the timer elapses it is not restarted,
7878
but simply left running. There is no concept of spawning new service instances in this case. Due to this, services
79-
with <varname>RemainAfterExit=</varname> set (which stay around continously even after the service's main process
79+
with <varname>RemainAfterExit=</varname> set (which stay around continuously even after the service's main process
8080
exited) are usually not suitable for activation via repetitive timers, as they will only be activated once, and
8181
then stay around forever.</para>
8282
</refsect1>

src/boot/bootctl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ static int verify_esp(const char *p, uint32_t *part, uint64_t *pstart, uint64_t
101101
errno = 0;
102102
r = blkid_do_safeprobe(b);
103103
if (r == -2) {
104-
log_error("File system \"%s\" is ambigious.", p);
104+
log_error("File system \"%s\" is ambiguous.", p);
105105
return -ENODEV;
106106
} else if (r == 1) {
107107
log_error("File system \"%s\" does not contain a label.", p);

src/core/cgroup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ int unit_watch_cgroup(Unit *u) {
11361136
/* Only applies to the unified hierarchy */
11371137
r = cg_unified();
11381138
if (r < 0)
1139-
return log_unit_error_errno(u, r, "Failed detect wether the unified hierarchy is used: %m");
1139+
return log_unit_error_errno(u, r, "Failed detect whether the unified hierarchy is used: %m");
11401140
if (r == 0)
11411141
return 0;
11421142

src/core/unit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ static void unit_check_unneeded(Unit *u) {
16831683
if (unit_active_or_pending(other))
16841684
return;
16851685

1686-
/* If stopping a unit fails continously we might enter a stop
1686+
/* If stopping a unit fails continuously we might enter a stop
16871687
* loop here, hence stop acting on the service being
16881688
* unnecessary after a while. */
16891689
if (!ratelimit_test(&u->auto_stop_ratelimit)) {
@@ -1728,7 +1728,7 @@ static void unit_check_binds_to(Unit *u) {
17281728
if (!stop)
17291729
return;
17301730

1731-
/* If stopping a unit fails continously we might enter a stop
1731+
/* If stopping a unit fails continuously we might enter a stop
17321732
* loop here, hence stop acting on the service being
17331733
* unnecessary after a while. */
17341734
if (!ratelimit_test(&u->auto_stop_ratelimit)) {

src/journal-remote/microhttpd-util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static int mhd_respond_internal(struct MHD_Connection *connection,
6060
if (!response)
6161
return MHD_NO;
6262

63-
log_debug("Queing response %u: %s", code, buffer);
63+
log_debug("Queueing response %u: %s", code, buffer);
6464
MHD_add_response_header(response, "Content-Type", "text/plain");
6565
r = MHD_queue_response(connection, code, response);
6666
MHD_destroy_response(response);

0 commit comments

Comments
 (0)
X Tutup