From 6082e3c69573e31ad0514ad2a8c386d21a1327c0 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 19 Mar 2011 12:27:09 -0700 Subject: [PATCH] Changed sepBy to sepEndBy. --- Text/HeX/Math.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Text/HeX/Math.hs b/Text/HeX/Math.hs index 37e357f..f253933 100644 --- a/Text/HeX/Math.hs +++ b/Text/HeX/Math.hs @@ -89,4 +89,4 @@ arrayLine expr = sepBy1 (mconcat <$> many (notFollowedBy endLine >> expr)) (char '&') arrayLines :: HeX Doc -> HeX [[Doc]] -arrayLines expr = sepBy1 (arrayLine expr) endLine +arrayLines expr = sepEndBy1 (arrayLine expr) endLine