From 96d4ce01103ebebe9335fb321667043bb620c06b Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 3 Sep 2010 16:30:48 +0200 Subject: [PATCH] man: Fix small typo: s/seperate/separate/ --- man/runlevel.xml | 2 +- man/sd_notify.xml | 2 +- man/systemctl.xml | 2 +- man/systemd.conf.xml | 2 +- man/systemd.exec.xml | 16 ++++++++-------- man/systemd.mount.xml | 2 +- man/systemd.service.xml | 4 ++-- src/initreq.h | 2 +- src/logger.c | 2 +- src/sd-daemon.h | 2 +- src/test-job-type.c | 2 +- src/unit.h | 2 +- 12 files changed, 20 insertions(+), 20 deletions(-) diff --git a/man/runlevel.xml b/man/runlevel.xml index 51bc3ed9f..160d1b14e 100644 --- a/man/runlevel.xml +++ b/man/runlevel.xml @@ -59,7 +59,7 @@ runlevel prints the previous and current SysV runlevel if they are known. - The two runlevel characters are seperated by a + The two runlevel characters are separated by a single space character. If a runlevel cannot be determined, N is printed instead. If neither can be determined, the word "unknown" is printed. diff --git a/man/sd_notify.xml b/man/sd_notify.xml index 7c1d982d8..c060bbad2 100644 --- a/man/sd_notify.xml +++ b/man/sd_notify.xml @@ -87,7 +87,7 @@ processes. The state parameter - should contain an newline-seperated list of variable + should contain an newline-separated list of variable assignments, similar in style to an environment block. A trailing newline is implied if none is specified. The string may contain any kind of variable diff --git a/man/systemctl.xml b/man/systemctl.xml index 88bc48fca..2eb153e73 100644 --- a/man/systemctl.xml +++ b/man/systemctl.xml @@ -445,7 +445,7 @@ does not have the effect that any of the units enabled are also started at the same time. If this is desired a - seperate start + separate start command must be invoked for the unit. diff --git a/man/systemd.conf.xml b/man/systemd.conf.xml index 95a2e5261..399cae0a6 100644 --- a/man/systemd.conf.xml +++ b/man/systemd.conf.xml @@ -96,7 +96,7 @@ Configures the initial CPU affinity for the init - process. Takes a space-seperated list + process. Takes a space-separated list of CPU indexes. diff --git a/man/systemd.exec.xml b/man/systemd.exec.xml index c71d42912..38b9e0608 100644 --- a/man/systemd.exec.xml +++ b/man/systemd.exec.xml @@ -122,7 +122,7 @@ Sets the supplementary Unix groups the processes are executed - as. This takes a space seperated list + as. This takes a space separated list of group names or IDs. This option may be specified more than once in which case all listed groups are set as @@ -234,7 +234,7 @@ Controls the CPU affinity of the executed - processes. Takes a space-seperated + processes. Takes a space-separated list of CPU indexes. See sched_setaffinity2 for details. @@ -256,7 +256,7 @@ Sets environment variables for executed - processes. Takes a space-seperated + processes. Takes a space-separated list of variable assignments. This option may be specified more than once in which case all listed variables @@ -272,7 +272,7 @@ Environment= but reads the environment variables from a text file. The text file should - contain new-line seperated variable + contain new-line separated variable assignments. Empty lines and lines starting with ; or # will be ignored, which may be used for @@ -618,7 +618,7 @@ Controls the control groups the executed processes shall be made members of. Takes a - space-seperated list of cgroup + space-separated list of cgroup identifiers. A cgroup identifier has a format like cpu:/foo/bar, @@ -637,7 +637,7 @@ arbitrary hierachies -- which can be configured externally with additional execution limits. By default systemd will place all executed - processes in seperate per-unit control + processes in separate per-unit control groups (named after the unit) in the systemd named hierarchy. Since every process can be in one group per @@ -660,7 +660,7 @@ to limit access a process might have to the main file-system hierarchy. Each setting takes a - space-seperated list of absolute + space-separated list of absolute directory paths. Directories listed in ReadWriteDirectories= are accessible from within the @@ -677,7 +677,7 @@ restricting access with these options does not extend to submounts of a directory. You must list submounts - seperately in these setttings to + separately in these setttings to ensure the same limited access. These options may be specified more than once in which case all directories diff --git a/man/systemd.mount.xml b/man/systemd.mount.xml index 70170bb86..323f23287 100644 --- a/man/systemd.mount.xml +++ b/man/systemd.mount.xml @@ -180,7 +180,7 @@ Mount options to use when mounting. This takes a comma - seperated list of options. This + separated list of options. This setting is optional. diff --git a/man/systemd.service.xml b/man/systemd.service.xml index c0fc9a989..d6c0e3fd9 100644 --- a/man/systemd.service.xml +++ b/man/systemd.service.xml @@ -290,7 +290,7 @@ by the string value of the environment variable of the same name. Also $FOO may appear as - seperate word on the command line in + separate word on the command line in which case the variable is replaced by its value split at whitespaces. @@ -306,7 +306,7 @@ command lines may be concatenated in a single directive, by seperating them by semicolons (these semicolons must - be passed as seperate words). In that + be passed as separate words). In that case, the commands are executed one after the other, serially. Alternatively, these diff --git a/src/initreq.h b/src/initreq.h index 6f6547bcb..859042ce4 100644 --- a/src/initreq.h +++ b/src/initreq.h @@ -58,7 +58,7 @@ struct init_request_bsd { /* * Because of legacy interfaces, "runlevel" and "sleeptime" - * aren't in a seperate struct in the union. + * aren't in a separate struct in the union. * * The weird sizes are because init expects the whole * struct to be 384 bytes. diff --git a/src/logger.c b/src/logger.c index a590bb84f..03a8ae8f5 100644 --- a/src/logger.c +++ b/src/logger.c @@ -514,7 +514,7 @@ static int process_event(Server *s, struct epoll_event *ev) { /* Yes, this is a bit ugly, we assume that that valid pointers * are > SD_LISTEN_FDS_START+SERVER_FD_MAX. Which is certainly * true on Linux (and probably most other OSes, too, since the - * first 4k usually are part of a seperate null pointer + * first 4k usually are part of a separate null pointer * dereference page. */ if (PTR_TO_INT(ev->data.ptr) >= SD_LISTEN_FDS_START && diff --git a/src/sd-daemon.h b/src/sd-daemon.h index c68c96d2d..347421381 100644 --- a/src/sd-daemon.h +++ b/src/sd-daemon.h @@ -171,7 +171,7 @@ int sd_is_socket_unix(int fd, int type, int listening, const char *path, size_t /* Informs systemd about changed daemon state. This takes a number of - newline seperated environment-style variable assignments in a + newline separated environment-style variable assignments in a string. The following variables are known: READY=1 Tells systemd that daemon startup is finished (only diff --git a/src/test-job-type.c b/src/test-job-type.c index 29bb9e492..9e2fc35f4 100644 --- a/src/test-job-type.c +++ b/src/test-job-type.c @@ -50,7 +50,7 @@ int main(int argc, char*argv[]) { /* Verify that merged entries can be * merged with the same entries they - * can be merged with seperately */ + * can be merged with separately */ assert(!job_type_is_mergeable(a, c) || job_type_is_mergeable(d, c)); assert(!job_type_is_mergeable(b, c) || job_type_is_mergeable(d, c)); diff --git a/src/unit.h b/src/unit.h index c85d968b8..c93f3f765 100644 --- a/src/unit.h +++ b/src/unit.h @@ -338,7 +338,7 @@ struct UnitVTable { void (*shutdown)(Manager *m); /* When sending out PropertiesChanged signal, which properties - * shall be invalidated? This is a NUL seperated list of + * shall be invalidated? This is a NUL separated list of * strings, to minimize relocations a little. */ const char *bus_invalidating_properties; -- 2.30.2