From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewpsw-00077k-D4 for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewpsv-0001LX-Dl for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57297) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ewpsv-0001LO-9O for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ewpst-0004gH-72 for guix-patches@gnu.org; Fri, 16 Mar 2018 09:59:04 -0400 Subject: [bug#30837] [PATCH 3/3] guix import elpa: Fix typos in documentation strings Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ewpsA-0006cy-KP for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ewps7-0000xB-JB for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:18 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:37629) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ewps7-0000wz-FU for guix-patches@gnu.org; Fri, 16 Mar 2018 09:58:15 -0400 From: Konrad Hinsen Date: Fri, 16 Mar 2018 14:55:10 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30837@debbugs.gnu.org --- guix/import/elpa.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm index cae10eb1c..d4bd6eaf8 100644 --- a/guix/import/elpa.scm +++ b/guix/import/elpa.scm @@ -67,7 +67,7 @@ NAMES (strings)." (string-append package-name-prefix (string-downcase name))))) (define* (elpa-url #:optional (repo 'gnu)) - "Retrun the URL of REPO." + "Retrieve the URL of REPO." (let ((elpa-archives '((gnu . "https://elpa.gnu.org/packages") (melpa-stable . "https://stable.melpa.org/packages") @@ -75,7 +75,7 @@ NAMES (strings)." (assq-ref elpa-archives repo))) (define* (elpa-fetch-archive #:optional (repo 'gnu)) - "Retrive the archive with the list of packages available from REPO." + "Retrieve the archive with the list of packages available from REPO." (let ((url (and=> (elpa-url repo) (cut string-append <> "/archive-contents")))) (if url -- 2.16.2