about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorMathieu Boespflug <mboes@tweag.net>2016-09-05 13:27:00 +0200
committerDomen Kožar <domen@dev.si>2016-09-05 13:27:00 +0200
commitdb481dca316fded5d538e325023146815e3932cb (patch)
tree795be04c7c86a5c767ab728eadb1f6abbc4fe325 /doc
parent33229f0d876bfce08ae5b0a34dd014b7e406077e (diff)
downloadnixlib-db481dca316fded5d538e325023146815e3932cb.tar
nixlib-db481dca316fded5d538e325023146815e3932cb.tar.gz
nixlib-db481dca316fded5d538e325023146815e3932cb.tar.bz2
nixlib-db481dca316fded5d538e325023146815e3932cb.tar.lz
nixlib-db481dca316fded5d538e325023146815e3932cb.tar.xz
nixlib-db481dca316fded5d538e325023146815e3932cb.tar.zst
nixlib-db481dca316fded5d538e325023146815e3932cb.zip
doc/language-frameworks/haskell.md: typo in code example. (#18313)
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/haskell.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/haskell.md b/doc/languages-frameworks/haskell.md
index 18b2fd65f44b..904e3a5069ee 100644
--- a/doc/languages-frameworks/haskell.md
+++ b/doc/languages-frameworks/haskell.md
@@ -383,7 +383,7 @@ You can select a particular GHC version to compile with by setting the
 Stack choose what GHC version it wants based on the snapshot specified
 in `stack.yaml` (only works with Stack >= 1.1.3):
 
-    {nixpkgs ? import <nixpkgs> { }, ghc ? nixpkgs.ghc}
+    {nixpkgs ? import <nixpkgs> { }, ghc ? nixpkgs.ghc}:
 
     with nixpkgs;