diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-09 22:49:34 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-10 00:37:47 +0200 |
commit | 6376cb34b14e3daeb11ed9c12521c127b48753a2 (patch) | |
tree | 9ee64b6aefca2156ba5f5106827aaba045db2795 /doc | |
parent | d98e0a27a7c5e34837fff4edd42a641828070213 (diff) |
doc: Fix a typo.
* doc/guix.texi (operating-system Reference): Fix a typo & sigh.
Reported by Jakub Kądziołka <kuba@kadziolka.net>.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 337ffe6813..587c004bee 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -11967,9 +11967,9 @@ at @file{/run/current-system/profile}. Each element is either a package variable or a package/output tuple. Here's a simple example of both: @lisp -(cons* git ; the default "out" output - (git "send-email") ; another output of git - %base-packages) ; the default set +(cons* git ; the default "out" output + (list git "send-email") ; another output of git + %base-packages) ; the default set @end lisp The default set includes core utilities and it is good practice to |