File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -361,12 +361,12 @@ validRangeOpts :: SlotRange -> [Text]
361361validRangeOpts (Interval lowerBound upperBound) =
362362 mconcat
363363 [ case lowerBound of
364- LowerBound (Finite (Slot x)) True -> [" --invalid-hereafter " , showText x]
365- LowerBound (Finite (Slot x)) False -> [" --invalid-hereafter " , showText (x + 1 )]
364+ LowerBound (Finite (Slot x)) True -> [" --invalid-before " , showText x]
365+ LowerBound (Finite (Slot x)) False -> [" --invalid-before " , showText (x + 1 )]
366366 _ -> []
367367 , case upperBound of
368- UpperBound (Finite (Slot x)) True -> [" --invalid-before " , showText (x + 1 )]
369- UpperBound (Finite (Slot x)) False -> [" --invalid-before " , showText x]
368+ UpperBound (Finite (Slot x)) True -> [" --invalid-hereafter " , showText (x + 1 )]
369+ UpperBound (Finite (Slot x)) False -> [" --invalid-hereafter " , showText x]
370370 _ -> []
371371 ]
372372
You can’t perform that action at this time.
0 commit comments