diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2015-05-01 08:54:33 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-04 00:24:21 +0200 |
commit | 8e9aa37f6967f7b8dac46b54bc39c1e0464a350c (patch) | |
tree | 815cc4a3909b2a37d5a588abf3d3169c32152af4 /doc | |
parent | b4e5d8e7da57529294cbfd470309775a26090ce1 (diff) | |
download | guix-8e9aa37f6967f7b8dac46b54bc39c1e0464a350c.tar guix-8e9aa37f6967f7b8dac46b54bc39c1e0464a350c.tar.gz |
doc: Replace reference to profile.sh with sh-symlink
* doc/guix.texi (The Store Monad): Replace reference to "profile.sh",
which is not defined until the next node, with "sh-symlink", which
is defined immediately above
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
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 3328cbac91..d7868bade8 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2354,12 +2354,12 @@ parameter is now implicit, and the monadic value returned by @code{derivation->output-path}---is @dfn{bound} using @code{mlet} instead of plain @code{let}. -Calling the monadic @code{profile.sh} has no effect. To get the desired +Calling the monadic @code{sh-symlink} has no effect. To get the desired effect, one must use @code{run-with-store}: @example -(run-with-store (open-connection) (profile.sh)) -@result{} /gnu/store/...-profile.sh +(run-with-store (open-connection) (sh-symlink)) +@result{} /gnu/store/...-sh-symlink @end example Note that the @code{(guix monad-repl)} module extends Guile's REPL with |