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 @@ -381,12 +381,12 @@ validRangeOpts :: SlotRange -> [Text]
381381validRangeOpts (Interval lowerBound upperBound) =
382382 mconcat
383383 [ case lowerBound of
384- LowerBound (Finite (Slot x)) True -> [" --invalid-hereafter " , showText x]
385- LowerBound (Finite (Slot x)) False -> [" --invalid-hereafter " , showText (x + 1 )]
384+ LowerBound (Finite (Slot x)) True -> [" --invalid-before " , showText x]
385+ LowerBound (Finite (Slot x)) False -> [" --invalid-before " , showText (x + 1 )]
386386 _ -> []
387387 , case upperBound of
388- UpperBound (Finite (Slot x)) True -> [" --invalid-before " , showText (x + 1 )]
389- UpperBound (Finite (Slot x)) False -> [" --invalid-before " , showText x]
388+ UpperBound (Finite (Slot x)) True -> [" --invalid-hereafter " , showText (x + 1 )]
389+ UpperBound (Finite (Slot x)) False -> [" --invalid-hereafter " , showText x]
390390 _ -> []
391391 ]
392392
You can’t perform that action at this time.
0 commit comments