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>master
parent
0294cfc25a
commit
0b5120fb03
|
@ -13455,12 +13455,12 @@ of a package:
|
||||||
|
|
||||||
(operating-system
|
(operating-system
|
||||||
;; ...
|
;; ...
|
||||||
(packages (cons (list bind "utils")
|
(packages (cons (list isc-bind "utils")
|
||||||
%base-packages)))
|
%base-packages)))
|
||||||
@end lisp
|
@end lisp
|
||||||
|
|
||||||
@findex specification->package
|
@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
|
the advantage of being unambiguous; it also allows typos and such to be
|
||||||
diagnosed right away as ``unbound variables''. The downside is that one
|
diagnosed right away as ``unbound variables''. The downside is that one
|
||||||
needs to know which module defines which package, and to augment the
|
needs to know which module defines which package, and to augment the
|
||||||
|
|
Reference in New Issue