From af5705308a4e4271602e7d356fa8602489e31d0e Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 23 Jul 2013 20:31:49 -0700 Subject: Test suite changes for new highlighting-kate version. --- tests/lhs-test.html+lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/lhs-test.html+lhs') diff --git a/tests/lhs-test.html+lhs b/tests/lhs-test.html+lhs index 487a8a26b..bc0935bd1 100644 --- a/tests/lhs-test.html+lhs +++ b/tests/lhs-test.html+lhs @@ -30,7 +30,7 @@ code > span.er { color: #ff0000; font-weight: bold; }

lhs test

unsplit is an arrow that takes a pair of values and combines them to return a single value:

> unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
-> unsplit = arr . uncurry
+> unsplit = arr . uncurry
 >           -- arr (\op (x,y) -> x `op` y)

(***) combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair).

f *** g = first f >>> second g
-- cgit v1.2.3