Skip to content

Commit 1e7af95

Browse files
authored
Merge pull request #139 from ndmitchell/patch-1
Avoid trigraph warning
2 parents 473ae42 + 6c1f5fe commit 1e7af95

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)