import: elpa: Fix typos in documentation strings
* guix/import/elpa.scm: Fix typos in docstrings. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
44dd3d579d
commit
07d2fed2f6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue