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
1 changed files with 2 additions and 2 deletions

View File

@ -518,8 +518,8 @@ following forms:
(add-before <old-phase-name> <new-phase-name> <new-phase>) (add-before <old-phase-name> <new-phase-name> <new-phase>)
(add-after <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> Where every <*-phase-name> is an expression evaluating to a symbol, and
an expression evaluating to a procedure." <new-phase> an expression evaluating to a procedure."
(let* ((phases* phases) (let* ((phases* phases)
(phases* (%modify-phases phases* mod-spec)) (phases* (%modify-phases phases* mod-spec))
...) ...)