aboutsummaryrefslogtreecommitdiff
path: root/guix/import/stackage.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-09-22 15:24:10 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-09-23 04:36:59 +0200
commitbd16cc2902800932f58a34647e224734aa3647cd (patch)
tree22a84631d86f2dadcec000360d8f2f5bc340c53b /guix/import/stackage.scm
parent10da14c5ec4da71d9d512e9e96a5115631a7c793 (diff)
downloadguix-bd16cc2902800932f58a34647e224734aa3647cd.tar
guix-bd16cc2902800932f58a34647e224734aa3647cd.tar.gz
import: Fix docstring typoes.
* guix/import/cabal.scm (cabal-flags->alist): Fix typo in docstring. * guix/import/stackage.scm (lts-info-ghc-version): Likewise. * guix/scripts/import/hackage.scm (show-help): Likewise.
Diffstat (limited to 'guix/import/stackage.scm')
-rw-r--r--guix/import/stackage.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/import/stackage.scm b/guix/import/stackage.scm
index e04073d193..ee12108815 100644
--- a/guix/import/stackage.scm
+++ b/guix/import/stackage.scm
@@ -42,12 +42,12 @@
(define %stackage-url "http://www.stackage.org")
(define (lts-info-ghc-version lts-info)
- "Retruns the version of the GHC compiler contained in LTS-INFO."
+ "Returns the version of the GHC compiler contained in LTS-INFO."
(and=> (assoc-ref lts-info "snapshot")
(cut assoc-ref <> "ghc")))
(define (lts-info-packages lts-info)
- "Retruns the alist of packages contained in LTS-INFO."
+ "Returns the alist of packages contained in LTS-INFO."
(or (assoc-ref lts-info "packages") '()))
(define (leave-with-message fmt . args)