Skip to content

Commit a44d4e0

Browse files
committed
Fix space in example
1 parent 750adfe commit a44d4e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Text.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ span p t = case span_ p t of
13731373
-- string.
13741374
--
13751375
-- >>> T.spanEnd (=='0') "AB000"
1376-
-- ("AB", "000")
1376+
-- ("AB","000")
13771377
spanEnd :: (Char -> Bool) -> Text -> (Text, Text)
13781378
spanEnd p t = case spanEnd_ p t of (# hd, tl #) -> (hd, tl)
13791379
{-# inline spanEnd #-}

0 commit comments

Comments
 (0)