summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-09-25 18:08:33 +0200
committerLudovic Courtès <ludo@gnu.org>2019-09-26 11:43:26 +0200
commit71339070a9c38dc5502697edacb11adbc30303eb (patch)
treea5ffecfbffacbb2db65d055da562e15190c8269b /doc
parent31e6e6a89f354b05132a3c209161f204a00557e1 (diff)
downloadpatches-71339070a9c38dc5502697edacb11adbc30303eb.tar
patches-71339070a9c38dc5502697edacb11adbc30303eb.tar.gz
doc: Do not comment out closing parens in Android examples.
* doc/guix.texi (Base Services): Arrange so that closin parens are not commented out.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 2f4e0ad7f9..4ffffcdc81 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -12389,7 +12389,7 @@ The following example showcases how we can use an existing rule file.
@lisp
(use-modules (guix download) ;for url-fetch
(guix packages) ;for origin
- ;; @dots{})
+ @dots{})
(define %android-udev-rules
(file->udev-rule
@@ -12423,7 +12423,7 @@ well as in the @var{groups} field of the @var{operating-system} record.
@lisp
(use-modules (gnu packages android) ;for android-udev-rules
(gnu system shadow) ;for user-group
- ;; @dots{})
+ @dots{})
(operating-system
;; @dots{}
@@ -12431,8 +12431,7 @@ well as in the @var{groups} field of the @var{operating-system} record.
;; @dots{}
(supplementary-groups
'("adbusers" ;for adb
- "wheel" "netdev" "audio" "video"))
- ;; @dots{})))
+ "wheel" "netdev" "audio" "video")))))
(groups (cons (user-group (system? #t) (name "adbusers"))
%base-groups))