-
Notifications
You must be signed in to change notification settings - Fork 217
Unecessary break before margin #799
Copy link
Copy link
Closed
Description
With the janestreet profile, the margin is 90:
let variable_name =
List.concat_map a__________________________________________________ ~f:(fun () ->
List.concat_map b______________________________________________xx ~f:(fun () -> "")
)
;;
The line is 89 character long so the closing parenthesis should fit.
I must remove 2 characters for it to fit:
let variable_name =
List.concat_map a__________________________________________________ ~f:(fun () ->
List.concat_map b______________________________________________ ~f:(fun () -> ""))
;;
Reactions are currently unavailable