[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: doc: Add missing parens in inetd example.
From: |
guix-commits |
Subject: |
02/05: doc: Add missing parens in inetd example. |
Date: |
Thu, 26 Sep 2019 05:50:07 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 473bd8100bd4039116912e0f10420240fd19f5c7
Author: Ludovic Courtès <address@hidden>
Date: Wed Sep 25 17:52:17 2019 +0200
doc: Add missing parens in inetd example.
* doc/guix.texi (Networking Services): Add missing parens in inetd
service example.
---
doc/guix.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 762e8da..64a0742 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -13349,7 +13349,7 @@ gateway @code{hostname}:
(program (file-append openssh "/bin/ssh"))
(arguments
'("ssh" "-qT" "-i" "/path/to/ssh_key"
- "-W" "smtp-server:25" "user@@hostname")))))
+ "-W" "smtp-server:25" "user@@hostname")))))))
@end lisp
See below for more details about @code{inetd-configuration}.