diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-12 16:22:31 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-12 16:22:31 -0800 |
commit | 202d848fb3a4da723aad81a56885e4e311889ce9 (patch) | |
tree | 82fdf4cb8e4e5e7e1b976022dbcd75ad23c93852 /tests/lhs-test.latex+lhs | |
parent | 9ce70291c89cb34a4dbaeb27f94c26e6611cc6b1 (diff) | |
download | pandoc-202d848fb3a4da723aad81a56885e4e311889ce9.tar.gz |
Fixed tests.
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 |