summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-07-14 18:39:18 +0200
committerLennart Poettering <lennart@poettering.net>2017-07-31 18:01:42 +0200
commitab7e3ef561e5c1ff63b58f4a329a9f90f0768eb0 (patch)
treec25b90b580580031907131bb815edc43184ac81b
parent3a0bf6d6aa08a267aefd5d5620fb6bee2556affb (diff)
downloadsystemd-ab7e3ef561e5c1ff63b58f4a329a9f90f0768eb0.tar.gz
escape: fix systemd-escape description text
The long man page paragraph got it right: the tool is for escaping systemd unit names, not just system unit names. Also fix the short man page paragraph and the --help text. Follow-up for 303608c1bcf9568371625fbbd9442946cadba422
-rw-r--r--man/systemd-escape.xml2
-rw-r--r--src/escape/escape.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/systemd-escape.xml b/man/systemd-escape.xml
index bb4c7e48e5..fb20d2d94f 100644
--- a/man/systemd-escape.xml
+++ b/man/systemd-escape.xml
@@ -45,7 +45,7 @@
<refnamediv>
<refname>systemd-escape</refname>
- <refpurpose>Escape strings for usage in system unit names</refpurpose>
+ <refpurpose>Escape strings for usage in systemd unit names</refpurpose>
</refnamediv>
<refsynopsisdiv>
diff --git a/src/escape/escape.c b/src/escape/escape.c
index 89e885d47c..5518c2a6fa 100644
--- a/src/escape/escape.c
+++ b/src/escape/escape.c
@@ -38,7 +38,7 @@ static bool arg_path = false;
static void help(void) {
printf("%s [OPTIONS...] [NAME...]\n\n"
- "Escape strings for usage in system unit names.\n\n"
+ "Escape strings for usage in systemd unit names.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" --suffix=SUFFIX Unit suffix to append to escaped strings\n"