Skip to content

Commit 96d4ce0

Browse files
mbieblpoettering
authored andcommitted
man: Fix small typo: s/seperate/separate/
1 parent f10814d commit 96d4ce0

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

man/runlevel.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<para><command>runlevel</command> prints the previous
6060
and current SysV runlevel if they are known.</para>
6161

62-
<para>The two runlevel characters are seperated by a
62+
<para>The two runlevel characters are separated by a
6363
single space character. If a runlevel cannot be
6464
determined, N is printed instead. If neither can be
6565
determined, the word "unknown" is printed.</para>

man/sd_notify.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
processes.</para>
8888

8989
<para>The <parameter>state</parameter> parameter
90-
should contain an newline-seperated list of variable
90+
should contain an newline-separated list of variable
9191
assignments, similar in style to an environment
9292
block. A trailing newline is implied if none is
9393
specified. The string may contain any kind of variable

man/systemctl.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
does not have the effect that any of
446446
the units enabled are also started at
447447
the same time. If this is desired a
448-
seperate <command>start</command>
448+
separate <command>start</command>
449449
command must be invoked for the
450450
unit.</para>
451451

man/systemd.conf.xml

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

9797
<listitem><para>Configures the initial
9898
CPU affinity for the init
99-
process. Takes a space-seperated list
99+
process. Takes a space-separated list
100100
of CPU indexes.</para></listitem>
101101
</varlistentry>
102102
</variablelist>

man/systemd.exec.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122

123123
<listitem><para>Sets the supplementary
124124
Unix groups the processes are executed
125-
as. This takes a space seperated list
125+
as. This takes a space separated list
126126
of group names or IDs. This option may
127127
be specified more than once in which
128128
case all listed groups are set as
@@ -234,7 +234,7 @@
234234

235235
<listitem><para>Controls the CPU
236236
affinity of the executed
237-
processes. Takes a space-seperated
237+
processes. Takes a space-separated
238238
list of CPU indexes. See
239239
<citerefentry><refentrytitle>sched_setaffinity</refentrytitle><manvolnum>2</manvolnum></citerefentry>
240240
for details.</para></listitem>
@@ -256,7 +256,7 @@
256256

257257
<listitem><para>Sets environment
258258
variables for executed
259-
processes. Takes a space-seperated
259+
processes. Takes a space-separated
260260
list of variable assignments. This
261261
option may be specified more than once
262262
in which case all listed variables
@@ -272,7 +272,7 @@
272272
<varname>Environment=</varname> but
273273
reads the environment variables from a
274274
text file. The text file should
275-
contain new-line seperated variable
275+
contain new-line separated variable
276276
assignments. Empty lines and lines
277277
starting with ; or # will be ignored,
278278
which may be used for
@@ -618,7 +618,7 @@
618618
<listitem><para>Controls the control
619619
groups the executed processes shall be
620620
made members of. Takes a
621-
space-seperated list of cgroup
621+
space-separated list of cgroup
622622
identifiers. A cgroup identifier has a
623623
format like
624624
<filename>cpu:/foo/bar</filename>,
@@ -637,7 +637,7 @@
637637
arbitrary hierachies -- which can be
638638
configured externally with additional execution limits. By default
639639
systemd will place all executed
640-
processes in seperate per-unit control
640+
processes in separate per-unit control
641641
groups (named after the unit) in the
642642
systemd named hierarchy. Since every
643643
process can be in one group per
@@ -660,7 +660,7 @@
660660
to limit access a process might have
661661
to the main file-system
662662
hierarchy. Each setting takes a
663-
space-seperated list of absolute
663+
space-separated list of absolute
664664
directory paths. Directories listed in
665665
<varname>ReadWriteDirectories=</varname>
666666
are accessible from within the
@@ -677,7 +677,7 @@
677677
restricting access with these options
678678
does not extend to submounts of a
679679
directory. You must list submounts
680-
seperately in these setttings to
680+
separately in these setttings to
681681
ensure the same limited access. These
682682
options may be specified more than
683683
once in which case all directories

man/systemd.mount.xml

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

181181
<listitem><para>Mount options to use
182182
when mounting. This takes a comma
183-
seperated list of options. This
183+
separated list of options. This
184184
setting is optional.</para></listitem>
185185
</varlistentry>
186186

man/systemd.service.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
by the string value of the environment
291291
variable of the same name. Also
292292
<literal>$FOO</literal> may appear as
293-
seperate word on the command line in
293+
separate word on the command line in
294294
which case the variable is replaced by
295295
its value split at
296296
whitespaces.</para></listitem>
@@ -306,7 +306,7 @@
306306
command lines may be concatenated in a
307307
single directive, by seperating them
308308
by semicolons (these semicolons must
309-
be passed as seperate words). In that
309+
be passed as separate words). In that
310310
case, the commands are executed one
311311
after the other,
312312
serially. Alternatively, these

src/initreq.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct init_request_bsd {
5858

5959
/*
6060
* Because of legacy interfaces, "runlevel" and "sleeptime"
61-
* aren't in a seperate struct in the union.
61+
* aren't in a separate struct in the union.
6262
*
6363
* The weird sizes are because init expects the whole
6464
* struct to be 384 bytes.

src/logger.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ static int process_event(Server *s, struct epoll_event *ev) {
514514
/* Yes, this is a bit ugly, we assume that that valid pointers
515515
* are > SD_LISTEN_FDS_START+SERVER_FD_MAX. Which is certainly
516516
* true on Linux (and probably most other OSes, too, since the
517-
* first 4k usually are part of a seperate null pointer
517+
* first 4k usually are part of a separate null pointer
518518
* dereference page. */
519519

520520
if (PTR_TO_INT(ev->data.ptr) >= SD_LISTEN_FDS_START &&

src/sd-daemon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ int sd_is_socket_unix(int fd, int type, int listening, const char *path, size_t
171171

172172
/*
173173
Informs systemd about changed daemon state. This takes a number of
174-
newline seperated environment-style variable assignments in a
174+
newline separated environment-style variable assignments in a
175175
string. The following variables are known:
176176
177177
READY=1 Tells systemd that daemon startup is finished (only

0 commit comments

Comments
 (0)