summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-03-02 14:13:34 +0900
committerLennart Poettering <lennart@poettering.net>2021-03-02 09:48:20 +0100
commit7a7d2f16c2ce668602727f7ac644ae6f6369c867 (patch)
treea16b18debfc10fabb0692de82f30f0302ebe3a1e
parentdbc3cf009a0a4a2a99bb4094a779fe89b059199a (diff)
downloadsystemd-7a7d2f16c2ce668602727f7ac644ae6f6369c867.tar.gz
tree-wide: fix typo
-rw-r--r--man/common-variables.xml2
-rw-r--r--man/systemd-coredump.xml2
-rw-r--r--src/core/namespace.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/man/common-variables.xml b/man/common-variables.xml
index 7798d97714..29922aa85a 100644
--- a/man/common-variables.xml
+++ b/man/common-variables.xml
@@ -75,7 +75,7 @@
project='man-pages'><refentrytitle>syslog</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
<constant>kmsg</constant> (log to the kernel circular log buffer), <constant>journal</constant> (log to
the journal), <constant>journal-or-kmsg</constant> (log to the journal if available, and to kmsg
- otherwise), <constant>auto</constant> (dermine the appropriate log target automatically, the default),
+ otherwise), <constant>auto</constant> (determine the appropriate log target automatically, the default),
<constant>null</constant> (disable log output).</para>
<!-- <constant>syslog</constant>, <constant>syslog-or-kmsg</constant> are deprecated -->
</listitem>
diff --git a/man/systemd-coredump.xml b/man/systemd-coredump.xml
index 8ddb8ef3ca..e84f8113fb 100644
--- a/man/systemd-coredump.xml
+++ b/man/systemd-coredump.xml
@@ -302,7 +302,7 @@ flags: ...
<filename>/proc/<replaceable>pid</replaceable>/limits</filename> (the soft and hard resource limits),
<filename>/proc/<replaceable>pid</replaceable>/mountinfo</filename> (mount points in the process's
mount namespace), <filename>/proc/<replaceable>pid</replaceable>/environ</filename>
- (the environemnt block of the crashed process).</para>
+ (the environment block of the crashed process).</para>
<para>See
<citerefentry project='man-pages'><refentrytitle>proc</refentrytitle><manvolnum>5</manvolnum></citerefentry>
diff --git a/src/core/namespace.c b/src/core/namespace.c
index 829fa61738..04b631d90c 100644
--- a/src/core/namespace.c
+++ b/src/core/namespace.c
@@ -418,7 +418,7 @@ static int append_extension_images(
return 0;
/* Prepare a list of overlays, that will have as each element a string suitable for being
- * passed as a lowerdir= parameter, so start with the hierachy on the root.
+ * passed as a lowerdir= parameter, so start with the hierarchy on the root.
* The overlays vector will have the same number of elements and will correspond to the
* hierarchies vector, so they can be iterated upon together. */
STRV_FOREACH(hierarchy, hierarchies) {