summaryrefslogtreecommitdiff
path: root/guix/build/haskell-build-system.scm
diff options
context:
space:
mode:
authorRobert Vollmert <rob@vllmrt.net>2019-05-27 21:56:17 +0200
committerTimothy Sample <samplet@ngyro.com>2019-06-13 13:30:23 -0400
commit5f9f2c82e6829823cf5bb1cc27f8b1333a1e2096 (patch)
tree5779b0f28e2de33a20195fcaeba079cced00ec9b /guix/build/haskell-build-system.scm
parent2a9d89afb6fb869dd2bdf1e9f710f487786930fc (diff)
downloadguix-patches-5f9f2c82e6829823cf5bb1cc27f8b1333a1e2096.tar
guix-patches-5f9f2c82e6829823cf5bb1cc27f8b1333a1e2096.tar.gz
build-system/haskell: Fix Haddock phase docstring.
* guix/build/haskell-build-system.scm (haddock): Fix docstring. Signed-off-by: Timothy Sample <samplet@ngyro.com>
Diffstat (limited to 'guix/build/haskell-build-system.scm')
-rw-r--r--guix/build/haskell-build-system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/haskell-build-system.scm b/guix/build/haskell-build-system.scm
index 23d97e6602..513c08096d 100644
--- a/guix/build/haskell-build-system.scm
+++ b/guix/build/haskell-build-system.scm
@@ -260,7 +260,7 @@ given Haskell package."
#t)
(define* (haddock #:key outputs haddock? haddock-flags #:allow-other-keys)
- "Run the test suite of a given Haskell package."
+ "Generate the Haddock documentation of a given Haskell package."
(when haddock?
(run-setuphs "haddock" haddock-flags))
#t)