]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - man/systemd-notify.xml
man: use unicode ellipsis in more places
[thirdparty/systemd.git] / man / systemd-notify.xml
index 71d501f435eadcca71c02d0bb3e9a56595ed070b..4a8e119eb6fb174b0a11642d3abfe2ac13d5bc7c 100644 (file)
@@ -60,7 +60,7 @@
     <para><command>systemd-notify</command> may be called by daemon
     scripts to notify the init system about status changes. It can be
     used to send arbitrary information, encoded in an
-    environment-block-like list of strings. Most importantly it can be
+    environment-block-like list of strings. Most importantly, it can be
     used for start-up completion notification.</para>
 
     <para>This is mostly just a wrapper around
         <listitem><para>Send a free-form status string for the daemon
         to the init systemd. This option takes the status string as
         argument. This is equivalent to <command>systemd-notify
-        STATUS=...</command>. For details about the semantics of this
+        STATUS=</command>. For details about the semantics of this
         option see
         <citerefentry><refentrytitle>sd_notify</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para></listitem>
       </varlistentry>
         message is sent. This option is hence unrelated to the other
         options. For details about the semantics of this option, see
         <citerefentry><refentrytitle>sd_booted</refentrytitle><manvolnum>3</manvolnum></citerefentry>. An
-        alternative way to check for this state is to call
+        alternate way to check for this state is to call
         <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
         with the <command>is-system-running</command> command. It will
         return <literal>offline</literal> if the system was not booted
       <programlisting>#!/bin/bash
 
 mkfifo /tmp/waldo
-systemd-notify --ready --status="Waiting for data..."
+systemd-notify --ready --status="Waiting for data"
 
 while : ; do
         read a &lt; /tmp/waldo
         systemd-notify --status="Processing $a"
 
-        # Do something with $a ...
+        # Do something with $a 
 
-        systemd-notify --status="Waiting for data..."
+        systemd-notify --status="Waiting for data"
 done</programlisting>
     </example>
   </refsect1>