tilia-0.0.1.0: corpora/vendored/other/comment-trailing-a-let-binding.hs
module Route.Delay where
delay :: Int -> Int
delay minutes =
let slack = 4 -- padding the timetable already allows
late = minutes - slack
in max 0 late
module Route.Delay where
delay :: Int -> Int
delay minutes =
let slack = 4 -- padding the timetable already allows
late = minutes - slack
in max 0 late