[bug#77116] Shepherd: doc: Fix typo of 'daemonizes'.

Message ID 87msdhryov.fsf@josefsson.org
State New
Headers
Series [bug#77116] Shepherd: doc: Fix typo of 'daemonizes'. |

Commit Message

Simon Josefsson March 19, 2025, 12:29 p.m. UTC
  Hi.  Thanks for a new release!  The attached patch should fix a minor
typo that I noticed by using 'codespell'.

/Simon
  

Comments

Ludovic Courtès March 22, 2025, 6:25 p.m. UTC | #1
Simon Josefsson <simon@josefsson.org> skribis:

> From d74d046aee3cd2a2fe450c9067b0bd1c61352acc Mon Sep 17 00:00:00 2001
> From: Simon Josefsson <simon@josefsson.org>
> Date: Wed, 19 Mar 2025 13:25:09 +0100
> Subject: [PATCH] doc: Fix typo of 'daemonizes'.
>
> * doc/shepherd.texi (Service Examples): Fix typo.

Applied, thanks!
  

Patch

From d74d046aee3cd2a2fe450c9067b0bd1c61352acc Mon Sep 17 00:00:00 2001
From: Simon Josefsson <simon@josefsson.org>
Date: Wed, 19 Mar 2025 13:25:09 +0100
Subject: [PATCH] doc: Fix typo of 'daemonizes'.

* doc/shepherd.texi (Service Examples): Fix typo.
---
 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")))
-- 
2.48.1