Skip to content

Commit 6c1f5fe

Browse files
authored
Avoid trigraph warning
1 parent 473ae42 commit 6c1f5fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CharSet.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ byteRangeToBytePair :: Span [Byte] -> ([Byte],[Byte])
121121
byteRangeToBytePair (Span x y) = (x,y)
122122

123123
data Span a = Span a a -- lower bound inclusive, higher bound exclusive
124-
-- (SDM: upper bound inclusive, surely??)
124+
-- (SDM: upper bound inclusive, surely?)
125125
instance Functor Span where
126126
fmap f (Span x y) = Span (f x) (f y)
127127

0 commit comments

Comments
 (0)