utils: Fix 'modify-phases' docstring.
Commit Message
This is a trivial patch to guix/build/utils.scm. I'm still not clear
on what must go to core-updates and what not, so guide me please.
Comments
taylanbayirli@gmail.com ("Taylan Ulrich "Bayırlı/Kammer\"") skribis:
> /home/taylan/src/guix/0001-utils-Fix-modify-phases-docstring.patch===
> From 7723d713fe058fec4d09150c78063eff47333858 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <taylanbayirli@gmail.com>
> Date: Mon, 20 Jun 2016 23:29:12 +0200
> Subject: [PATCH] utils: Fix 'modify-phases' docstring.
>
> * guix/build/utils.scm (modify-phases): Fix the documentation string.
LGTM! Please push it to ‘core-updates-next’ (yeah…).
Thank you,
Ludo’.
ludo@gnu.org (Ludovic Courtès) writes:
> taylanbayirli@gmail.com ("Taylan Ulrich "Bayırlı/Kammer\"") skribis:
>
>> /home/taylan/src/guix/0001-utils-Fix-modify-phases-docstring.patch===
>> From 7723d713fe058fec4d09150c78063eff47333858 Mon Sep 17 00:00:00 2001
>> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
>> <taylanbayirli@gmail.com>
>> Date: Mon, 20 Jun 2016 23:29:12 +0200
>> Subject: [PATCH] utils: Fix 'modify-phases' docstring.
>>
>> * guix/build/utils.scm (modify-phases): Fix the documentation string.
>
> LGTM! Please push it to ‘core-updates-next’ (yeah…).
>
> Thank you,
> Ludo’.
Aha, that's a new one. :-) Done.
Taylan
===File
/home/taylan/src/guix/0001-utils-Fix-modify-phases-docstring.patch===
From 7723d713fe058fec4d09150c78063eff47333858 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<taylanbayirli@gmail.com>
Date: Mon, 20 Jun 2016 23:29:12 +0200
Subject: [PATCH] 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(-)
@@ -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))
...)