summaryrefslogtreecommitdiff
path: root/guix/import
diff options
context:
space:
mode:
authorKonrad Hinsen <konrad.hinsen@fastmail.net>2018-03-16 14:55:10 +0100
committerLudovic Courtès <ludo@gnu.org>2018-03-18 00:02:05 +0100
commit07d2fed2f60c43372446bee5fa2ac779e4acb0eb (patch)
treecc7dbeb078406e4e190e051ff04d00ba83821a05 /guix/import
parent44dd3d579db3aa467e41d0b431029e46cae8e12d (diff)
downloadgnu-guix-07d2fed2f60c43372446bee5fa2ac779e4acb0eb.tar
gnu-guix-07d2fed2f60c43372446bee5fa2ac779e4acb0eb.tar.gz
import: elpa: Fix typos in documentation strings
* guix/import/elpa.scm: Fix typos in docstrings. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/import')
-rw-r--r--guix/import/elpa.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
index 7f76a13adb..5d3d04ee7c 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