aboutsummaryrefslogtreecommitdiff
path: root/test/lhs-test.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'test/lhs-test.markdown')
-rw-r--r--test/lhs-test.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lhs-test.markdown b/test/lhs-test.markdown
index 20949b75c..0ddf24a98 100644
--- a/test/lhs-test.markdown
+++ b/test/lhs-test.markdown
@@ -4,7 +4,7 @@ lhs test
`unsplit` is an arrow that takes a pair of values and combines them to
return a single value:
-``` {.sourceCode .literate .haskell}
+``` {.haskell .literate}
unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
unsplit = arr . uncurry
-- arr (\op (x,y) -> x `op` y)