From 3122959064412a40d650840467f2838326687251 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 27 Dec 2011 22:23:57 -0800 Subject: Highlighting: Add language as class name. This restores behavior of 1.8.2.1. Adjusted tests. --- 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 f0b0f3e15..e21522cef 100644 --- a/tests/lhs-test.html+lhs +++ b/tests/lhs-test.html+lhs @@ -27,7 +27,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 :: (Arrow a) => (b -> c -> d) -> a (b, c) d
 > 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).

-- cgit v1.2.3