From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com ("Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer=22?=) Subject: [PATCH] utils: Fix 'modify-phases' docstring. Date: Mon, 20 Jun 2016 23:37:02 +0200 Message-ID: <87porbsfsx.fsf@T420.taylan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35272) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF6sV-0001k2-O1 for guix-devel@gnu.org; Mon, 20 Jun 2016 17:37:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bF6sT-00036g-Ne for guix-devel@gnu.org; Mon, 20 Jun 2016 17:37:06 -0400 Received: from mail-lf0-x242.google.com ([2a00:1450:4010:c07::242]:35928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bF6sT-00036Z-GI for guix-devel@gnu.org; Mon, 20 Jun 2016 17:37:05 -0400 Received: by mail-lf0-x242.google.com with SMTP id a2so6905738lfe.3 for ; Mon, 20 Jun 2016 14:37:05 -0700 (PDT) Received: from T420.taylan ([2a02:908:c30:3540:221:ccff:fe66:68f0]) by smtp.gmail.com with ESMTPSA id el4sm32722767wjd.23.2016.06.20.14.37.03 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 20 Jun 2016 14:37:03 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org 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. ===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?= 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(-) 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 ) (add-after ) -Where every <*-phase-name> is an automatically quoted symbol, and -an expression evaluating to a procedure." +Where every <*-phase-name> is an expression evaluating to a symbol, and + an expression evaluating to a procedure." (let* ((phases* phases) (phases* (%modify-phases phases* mod-spec)) ...) -- 2.8.4 ============================================================