summaryrefslogtreecommitdiff
path: root/guix/build/utils.scm
diff options
context:
space:
mode:
authorTaylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>2016-06-20 23:29:12 +0200
committerLeo Famulari <leo@famulari.name>2016-08-10 15:39:45 -0400
commit7ee5a694a89f508b62d2e5b569a80197b813462a (patch)
treeb04590d85b8ddf7a2aaaffdf900b9911e77092cf /guix/build/utils.scm
parentddfba024d4401620192e7c314615f95fc5bb6d14 (diff)
downloadguix-patches-7ee5a694a89f508b62d2e5b569a80197b813462a.tar
guix-patches-7ee5a694a89f508b62d2e5b569a80197b813462a.tar.gz
utils: Fix 'modify-phases' docstring.
* guix/build/utils.scm (modify-phases): Fix the documentation string.
Diffstat (limited to 'guix/build/utils.scm')
-rw-r--r--guix/build/utils.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build/utils.scm b/guix/build/utils.scm
index 2988193fce..6e706b378e 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))
...)