We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 473ae42 + 6c1f5fe commit 1e7af95Copy full SHA for 1e7af95
src/CharSet.hs
@@ -121,7 +121,7 @@ byteRangeToBytePair :: Span [Byte] -> ([Byte],[Byte])
121
byteRangeToBytePair (Span x y) = (x,y)
122
123
data Span a = Span a a -- lower bound inclusive, higher bound exclusive
124
- -- (SDM: upper bound inclusive, surely??)
+ -- (SDM: upper bound inclusive, surely?)
125
instance Functor Span where
126
fmap f (Span x y) = Span (f x) (f y)
127
0 commit comments