diff options
author | Luis Felipe <luis.felipe.la@protonmail.com> | 2021-03-01 11:15:16 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-06-13 22:23:24 -0400 |
commit | 0b5120fb03db5226871b3482a72b1e6fdaa59ead (patch) | |
tree | b11a3924cb9fb3c5b85fbc8bdf1f293adf62e332 /doc/guix.texi | |
parent | 0294cfc25a6a8d8cbe4374b3df01ae7acd39263f (diff) | |
download | guix-0b5120fb03db5226871b3482a72b1e6fdaa59ead.tar.gz |
doc: Fix reference to the bind package variable name.
* doc/guix.texi (Globally-Visible Packages): Change "bind" variable name to the actual variable name, "isc-bind". Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index e7c783bd95..cc5ca18256 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -13455,12 +13455,12 @@ of a package: (operating-system ;; ... - (packages (cons (list bind "utils") + (packages (cons (list isc-bind "utils") %base-packages))) @end lisp @findex specification->package -Referring to packages by variable name, like @code{bind} above, has +Referring to packages by variable name, like @code{isc-bind} above, has the advantage of being unambiguous; it also allows typos and such to be diagnosed right away as ``unbound variables''. The downside is that one needs to know which module defines which package, and to augment the |