civodul pushed a commit to branch main
in repository shepherd.

commit 63d76da29edef70083d77280e60733348f948960
Author: Simon Josefsson <[email protected]>
AuthorDate: Wed Mar 19 13:25:09 2025 +0100

    doc: Fix typo of 'daemonizes'.
    
    * doc/shepherd.texi (Service Examples): Fix typo.
    
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 doc/shepherd.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/shepherd.texi b/doc/shepherd.texi
index 3f3dbe8..f826b74 100644
--- a/doc/shepherd.texi
+++ b/doc/shepherd.texi
@@ -1832,7 +1832,7 @@ usual @code{make-forkexec-constructor} and 
@code{make-kill-destructor}.
 (service
   '(nginx)
   #:start (lambda ()
-            ;; The 'nginx' command deamonizes and returns immediately;
+            ;; The 'nginx' command daemonizes and returns immediately;
             ;; it eventually writes a PID file once successfully started.
             (and (zero? (system* "/usr/sbin/nginx"))
                  (read-pid-file "/var/run/nginx/pid")))

Reply via email to