From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 3/3] guix import pypi: Fix a type in a docstring. Date: Thu, 16 Oct 2014 00:49:14 +0200 Message-ID: <1413413354-31144-4-git-send-email-tipecaml@gmail.com> References: <1413413354-31144-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53484) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeXNy-0001Lr-4T for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeXNp-0000Yh-C1 for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:38 -0400 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:47754) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeXNo-0000YP-SP for guix-devel@gnu.org; Wed, 15 Oct 2014 18:49:29 -0400 Received: by mail-wi0-f174.google.com with SMTP id h11so11280521wiw.7 for ; Wed, 15 Oct 2014 15:49:27 -0700 (PDT) In-Reply-To: <1413413354-31144-1-git-send-email-tipecaml@gmail.com> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * guix/import/pypi.scm (snake-case): Fix documentation. --- guix/import/pypi.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index 722ad9d..12abbac 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -117,8 +117,8 @@ recursively apply the procedure to the sub-list." (assoc-ref* pypi-package "info" "version"))))) (define (snake-case str) - "Return a downcased version of the string STR where dashes are replaced with -underscores." + "Return a downcased version of the string STR where underscores are replaced +with dashes." (string-join (string-split (string-downcase str) #\_) "-")) (define (guix-hash-url url) -- 1.8.4.rc3