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.
1 parent 3b03768 commit e6a85e2Copy full SHA for e6a85e2
analysis/src/CompletionBackEnd.ml
@@ -2234,8 +2234,7 @@ let rec processCompletable ~debug ~full ~scope ~env ~pos ~forHover completable =
2234
user has already written. Just complete for the rest. *)
2235
let newText =
2236
c.name ^ " {\n"
2237
- ^ (cases
2238
- |> List.sort (String.compare)
+ ^ (cases |> List.sort String.compare
2239
|> List.mapi (fun index caseText ->
2240
"| " ^ caseText ^ " => "
2241
^ printFailwithStr (startIndex + index + 1))
0 commit comments