diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-09 19:50:15 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-09 21:12:31 +0200 |
commit | 05e9709898c832213cbc430e1ec96728ae595383 (patch) | |
tree | 754b6240446e7d6894eb000a3ee5b98ea0e7364f | |
parent | c1a326e7bfc0cf4b3da795155627b16df588d260 (diff) | |
download | guix-05e9709898c832213cbc430e1ec96728ae595383.tar.gz |
doc: Shrink width of deeply-indented code sample.
This follows up on commit 4cafdce2102e3ebc7b3a6152464a62a454b6be45. * doc/guix.texi (operating-system Reference): Shorten comments to fit everything on an 80-character punch card.
-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 7855983bf2..337ffe6813 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 ; only the default "out" output - (git "send-email") ; another output of the git package - %base-packages) ; the default set +(cons* git ; the default "out" output + (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 |