[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: doc: Use @code rather than @var for data type items.
From: |
guix-commits |
Subject: |
01/02: doc: Use @code rather than @var for data type items. |
Date: |
Wed, 28 Oct 2020 09:05:23 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit e2f16ea1cf7e6815a9ec13d2d30bc4fc31bb77e2
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Tue Oct 27 09:51:38 2020 +0000
doc: Use @code rather than @var for data type items.
In the couple of cases where it's inconsistent.
* doc/guix.texi (PostgreSQL, Sound Services): Replace @var with @code within
data type sections.
---
doc/guix.texi | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 717ca14..2e48f81 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -18565,20 +18565,20 @@ without a @code{pulseaudio} package, consider
enabling it through the
Data type representing the configuration for @code{pulseaudio-service}.
@table @asis
-@item @var{client-conf} (default: @code{'()})
+@item @code{client-conf} (default: @code{'()})
List of settings to set in @file{client.conf}.
Accepts a list of strings or a symbol-value pairs. A string will be
inserted as-is with a newline added. A pair will be formatted as
``key = value'', again with a newline added.
-@item @var{daemon-conf} (default: @code{'((flat-volumes . no))})
+@item @code{daemon-conf} (default: @code{'((flat-volumes . no))})
List of settings to set in @file{daemon.conf}, formatted just like
@var{client-conf}.
-@item @var{script-file} (default: @code{(file-append pulseaudio
"/etc/pulse/default.pa")})
+@item @code{script-file} (default: @code{(file-append pulseaudio
"/etc/pulse/default.pa")})
Script file to use as @file{default.pa}.
-@item @var{system-script-file} (default: @code{(file-append pulseaudio
"/etc/pulse/system.pa")})
+@item @code{system-script-file} (default: @code{(file-append pulseaudio
"/etc/pulse/system.pa")})
Script file to use as @file{system.pa}.
@end table
@end deftp
@@ -18641,24 +18641,24 @@ Data type representing the configuration for the
@code{postgresql-service-type}.
@table @asis
-@item @var{postgresql}
+@item @code{postgresql}
PostgreSQL package to use for the service.
-@item @var{port} (default: @code{5432})
+@item @code{port} (default: @code{5432})
Port on which PostgreSQL should listen.
-@item @var{locale} (default: @code{"en_US.utf8"})
+@item @code{locale} (default: @code{"en_US.utf8"})
Locale to use as the default when creating the database cluster.
-@item @var{config-file} (default: @code{(postgresql-config-file)})
+@item @code{config-file} (default: @code{(postgresql-config-file)})
The configuration file to use when running PostgreSQL. The default
behaviour uses the postgresql-config-file record with the default values
for the fields.
-@item @var{data-directory} (default: @code{"/var/lib/postgresql/data"})
+@item @code{data-directory} (default: @code{"/var/lib/postgresql/data"})
Directory in which to store the data.
-@item @var{extension-packages} (default: @code{'()})
+@item @code{extension-packages} (default: @code{'()})
@cindex postgresql extension-packages
Additional extensions are loaded from packages listed in
@var{extension-packages}. Extensions are available at runtime. For instance,