From 46179d5b3e84b5c709e09924cbda524230ebd3fe Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 12 May 2020 13:51:48 -0700 Subject: Use latest skylighting. This adds `aria-hidden="true"` to the empty a elements, which helps people who use screen readers. --- test/lhs-test.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/lhs-test.html') diff --git a/test/lhs-test.html b/test/lhs-test.html index 8153a4be1..8ec8e5dd9 100644 --- a/test/lhs-test.html +++ b/test/lhs-test.html @@ -83,9 +83,9 @@

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
-          -- arr (\op (x,y) -> x `op` y)
+
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