diff options
Diffstat (limited to 'tests/lhs-test.latex+lhs')
-rw-r--r-- | tests/lhs-test.latex+lhs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lhs-test.latex+lhs b/tests/lhs-test.latex+lhs index be9f0ceef..471c9698b 100644 --- a/tests/lhs-test.latex+lhs +++ b/tests/lhs-test.latex+lhs @@ -59,9 +59,9 @@ unsplit = arr . uncurry -- arr (\op (x,y) -> x `op` y) \end{code} -\texttt{(***)} 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). +\texttt{(***)} 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). \begin{verbatim} f *** g = first f >>> second g |