From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51772) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hOqTP-0000TW-TD for guix-patches@gnu.org; Thu, 09 May 2019 17:21:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hOqTO-0007o3-Vj for guix-patches@gnu.org; Thu, 09 May 2019 17:21:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51287) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hOqTO-0007nc-SB for guix-patches@gnu.org; Thu, 09 May 2019 17:21:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hOqTO-0001gr-Iq for guix-patches@gnu.org; Thu, 09 May 2019 17:21:02 -0400 Subject: [bug#35661] [PATCH] doc: Fix typo. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:51511) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hOqSQ-0008L5-UV for guix-patches@gnu.org; Thu, 09 May 2019 17:20:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hOqSP-0006Ug-3T for guix-patches@gnu.org; Thu, 09 May 2019 17:20:02 -0400 Received: from mout02.posteo.de ([185.67.36.66]:59397) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hOqSN-0006Pf-1o for guix-patches@gnu.org; Thu, 09 May 2019 17:19:59 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 379BB2400E6 for ; Thu, 9 May 2019 23:19:55 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 450R7Z4fNNz9rxH for ; Thu, 9 May 2019 23:19:54 +0200 (CEST) From: Diego Nicola Barbato Date: Thu, 09 May 2019 23:19:54 +0200 Message-ID: <87imujpbph.fsf@GlaDOS.home> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 35661@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, The documentation of 'shepherd-service' erroneously calls the 'requirement' field 'requirements'. The attached patch fixes that. I have also noticed that the 'auto-start?' field is not mentioned at all. Regards, Diego --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-doc-Fix-typo.patch >From 635fa669c8d52afd2363c99bfa03b2315af29e74 Mon Sep 17 00:00:00 2001 From: Diego Nicola Barbato Date: Thu, 9 May 2019 22:44:45 +0200 Subject: [PATCH] doc: Fix typo. * doc/guix.texi (shepherd-service): 'requirement' instead of 'requirements'. --- doc/guix.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guix.texi b/doc/guix.texi index df7208229c..f88fa827d4 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -25279,7 +25279,7 @@ These are the names that may be passed to @command{herd start}, shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details. -@item @code{requirements} (default: @code{'()}) +@item @code{requirement} (default: @code{'()}) List of symbols denoting the Shepherd services this one depends on. @cindex one-shot services, for the Shepherd -- 2.21.0 --=-=-=--