summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-11-15 12:08:39 +0100
committerLudovic Courtès <ludo@gnu.org>2022-11-15 12:16:44 +0100
commit5b555d639d05f0df7b26da459c69680ba35921bd (patch)
tree5b6fe2842bb3bb8156f28825a964667d043164f9 /doc
parentfd13259d85428f39bd6f292d047021a8c164894f (diff)
doc: Add missing closing parentheses in examples.
* doc/guix.texi (VNC Services, Guix Home Services): Add missing closing parentheses.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 23e807a2f6..75b7f4adcb 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -31064,7 +31064,8 @@ following configuration:
@end defvar
@lisp
-(service xvnc-service-type (xvnc-configuration (display-number 10)
+(service xvnc-service-type
+ (xvnc-configuration (display-number 10)))
@end lisp
As a demonstration, the @command{xclock} command could then be started
@@ -41484,7 +41485,7 @@ A typical extension for adding a channel might look like this:
(list
(channel
(name 'variant-packages)
- (url "https://example.org/variant-packages.git")))
+ (url "https://example.org/variant-packages.git"))))
@end lisp
@end defvr