diff options
author | Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> | 2016-06-20 23:29:12 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-08-10 15:39:45 -0400 |
commit | 7ee5a694a89f508b62d2e5b569a80197b813462a (patch) | |
tree | b04590d85b8ddf7a2aaaffdf900b9911e77092cf /guix | |
parent | ddfba024d4401620192e7c314615f95fc5bb6d14 (diff) | |
download | gnu-guix-7ee5a694a89f508b62d2e5b569a80197b813462a.tar gnu-guix-7ee5a694a89f508b62d2e5b569a80197b813462a.tar.gz |
utils: Fix 'modify-phases' docstring.
* guix/build/utils.scm (modify-phases): Fix the documentation string.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/utils.scm | 4 |
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)) ...) |