aboutsummaryrefslogtreecommitdiff
path: root/tests/lhs-test.latex+lhs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-12 16:22:31 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-12 16:22:31 -0800
commit202d848fb3a4da723aad81a56885e4e311889ce9 (patch)
tree82fdf4cb8e4e5e7e1b976022dbcd75ad23c93852 /tests/lhs-test.latex+lhs
parent9ce70291c89cb34a4dbaeb27f94c26e6611cc6b1 (diff)
downloadpandoc-202d848fb3a4da723aad81a56885e4e311889ce9.tar.gz
Fixed tests.
Diffstat (limited to 'tests/lhs-test.latex+lhs')
-rw-r--r--tests/lhs-test.latex+lhs6
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