diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-22 19:16:46 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-22 19:23:58 +0200 |
commit | 9475c631a70b82614a8f3d6db2840d00955e2e1c (patch) | |
tree | 55ad0896a971ad20aefc049cdea6004eecac1ffd /doc | |
parent | 2b0c0d9301aa70ce57055073a813a3a02c4f1eed (diff) | |
download | patches-9475c631a70b82614a8f3d6db2840d00955e2e1c.tar patches-9475c631a70b82614a8f3d6db2840d00955e2e1c.tar.gz |
doc: Adjust @var vs. @code.base-for-series-3632base-for-series-3631
* doc/guix.texi (Base Services): Adjust @var vs. @code. Use 'cons'
instead of 'cons*' in example.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 538797a7a3..4787f38181 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -12881,18 +12881,18 @@ upon detecting a USB device with a given product identifier. Return a service that extends @code{udev-service-type } with @var{rules} and @code{account-service-type} with @var{groups} as system groups. This works by creating a singleton service type -@var{name}@code{-udev-rules}, of which the returned service is an +@code{@var{name}-udev-rules}, of which the returned service is an instance. -Here we show how it can be used to extend @var{udev-service} with the +Here we show how it can be used to extend @code{udev-service-type} with the previously defined rule @code{%example-udev-rule}. @lisp (operating-system ;; @dots{} (services - (cons* (udev-rules-service 'usb-thing %example-udev-rule) - %desktop-services))) + (cons (udev-rules-service 'usb-thing %example-udev-rule) + %desktop-services))) @end lisp @end deffn @@ -12931,10 +12931,10 @@ The following example shows how to use the @var{android-udev-rules} package so that the Android tool @command{adb} can detect devices without root privileges. It also details how to create the @code{adbusers} group, which is required for the proper functioning of -the rules defined within the @var{android-udev-rules} package. To +the rules defined within the @code{android-udev-rules} package. To create such a group, we must define it both as part of the -@var{supplementary-groups} of our @var{user-account} declaration, as -well as in the @var{groups} of the @var{udev-rules-service} procedure. +@code{supplementary-groups} of our @code{user-account} declaration, as +well as in the @var{groups} of the @code{udev-rules-service} procedure. @lisp (use-modules (gnu packages android) ;for android-udev-rules |