phant0mas pushed a commit to branch core-updates-next
in repository guix.
commit 7b8f0bd749249f271725375ae03f56f97c151587
Author: Taylan Ulrich Bayırlı/Kammer <[email protected]>
Date: Mon Jun 20 23:29:12 2016 +0200
utils: Fix 'modify-phases' docstring.
* guix/build/utils.scm (modify-phases): Fix the documentation string.
---
guix/build/utils.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/build/utils.scm b/guix/build/utils.scm
index 2988193..6e706b3 100644
--- a/guix/build/utils.scm
+++ b/guix/build/utils.scm
@@ -518,8 +518,8 @@ following forms:
(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))
...)