diff mbox series

[bug#39752,2/5] service: Fix typos.

Message ID 20200223154008.24888-3-brice@waegenei.re
State Accepted
Headers show
Series Update the doc and an example. | expand

Checks

Context Check Description
cbaines/applying patch fail View Laminar job

Commit Message

Brice Waegeneire Feb. 23, 2020, 3:40 p.m. UTC
* modules/shepherd/service.scm (root-service): Replace "safe" by "save".
---
 modules/shepherd/service.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/modules/shepherd/service.scm b/modules/shepherd/service.scm
index e0772e8..fc82cc4 100644
--- a/modules/shepherd/service.scm
+++ b/modules/shepherd/service.scm
@@ -1392,7 +1392,7 @@  we want to receive these signals."
                  #t)
                (primitive-exit 0))))))
      (persistency
-      "Safe the current state of running and non-running services.
+      "Save the current state of running and non-running services.
 This status gets written into a file on termination, so that we can
 restore the status on next startup.  Optionally, you can pass a file
 name as argument that will be used to store the status."
@@ -1401,7 +1401,7 @@  name as argument that will be used to store the status."
                (when file
                  (set! persistency-state-file file))))
      (no-persistency
-      "Don't safe state in a file on exit."
+      "Don't save state in a file on exit."
       (lambda (running)
 	(set! persistency #f)))
      (cd