utils: Fix 'modify-phases' docstring.

* guix/build/utils.scm (modify-phases): Fix the documentation string.
This commit is contained in:
Taylan Ulrich Bayırlı/Kammer 2016-06-20 23:29:12 +02:00 committed by Leo Famulari
parent ddfba024d4
commit 7ee5a694a8
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -518,8 +518,8 @@ (define-syntax-rule (modify-phases phases mod-spec ...)
(add-before <old-phase-name> <new-phase-name> <new-phase>)
(add-after <old-phase-name> <new-phase-name> <new-phase>)
Where every <*-phase-name> is an automatically quoted symbol, and <new-phase>
an expression evaluating to a procedure."
Where every <*-phase-name> is an expression evaluating to a symbol, and
<new-phase> an expression evaluating to a procedure."
(let* ((phases* phases)
(phases* (%modify-phases phases* mod-spec))
...)