[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: doc: cookbook: Tweak intro to the REPL.
From: |
guix-commits |
Subject: |
08/08: doc: cookbook: Tweak intro to the REPL. |
Date: |
Mon, 22 Jun 2020 18:04:32 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 96a95aa9c7f309bd8014ccf4e28d915241d1045e
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Jun 23 00:01:48 2020 +0200
doc: cookbook: Tweak intro to the REPL.
* doc/guix-cookbook.texi (A Scheme Crash Course): Reword first
paragraph. Remove extra paren.
---
doc/guix-cookbook.texi | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi
index efafbd9..e4d685c 100644
--- a/doc/guix-cookbook.texi
+++ b/doc/guix-cookbook.texi
@@ -109,8 +109,8 @@ Let's get started!
Guix uses the Guile implementation of Scheme. To start playing with the
language, install it with @code{guix install guile} and start a
-@uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop,
-REPL} by running @code{guile} from the command line.
+@dfn{REPL}---short for
@uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop,
+@dfn{read-eval-print loop}}---by running @code{guile} from the command line.
Alternatively you can also run @code{guix environment --ad-hoc guile -- guile}
if you'd rather not have Guile installed in your user profile.
@@ -118,7 +118,7 @@ if you'd rather not have Guile installed in your user
profile.
In the following examples, lines show what you would type at the REPL;
lines starting with ``@result{}'' show evaluation results, while lines
starting with ``@print{}'' show things that get printed. @xref{Using Guile
-Interactively,,, guile, GNU Guile Reference Manual}), for more details on the
+Interactively,,, guile, GNU Guile Reference Manual}, for more details on the
REPL.
@itemize
- branch master updated (62115b7 -> 96a95aa), guix-commits, 2020/06/22
- 02/08: doc: cookbook: Mention "guix hash -rx" for Git checkouts., guix-commits, 2020/06/22
- 04/08: po: Avoid regexps when interpreting '\n' sequences., guix-commits, 2020/06/22
- 06/08: self: Move statements after definitions in translation derivation., guix-commits, 2020/06/22
- 01/08: doc: cookbook: Clarify 'git-fetch' conventions., guix-commits, 2020/06/22
- 03/08: self: Speed up Texinfo cross-reference translation., guix-commits, 2020/06/22
- 07/08: self: Parallelize translation of the manual., guix-commits, 2020/06/22
- 05/08: po: Micro-optimize 'read-po-file'., guix-commits, 2020/06/22
- 08/08: doc: cookbook: Tweak intro to the REPL.,
guix-commits <=