Skip to content

Commit

Permalink
Fix names of arguments to Ctype.{,raise_}scope_escape_exn
Browse files Browse the repository at this point in the history
  • Loading branch information
Antal Spector-Zabusky committed Apr 30, 2021
1 parent 1bc7e99 commit 597abee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typing/ctype.ml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ exception Public_method_to_private_method

let escape kind = {kind; context = None}
let escape_exn kind = Escape (escape kind)
let scope_escape_exn kind = escape_exn (Equation (short kind))
let scope_escape_exn ty = escape_exn (Equation (short ty))
let raise_escape_exn kind = raise (escape_exn kind)
let raise_scope_escape_exn kind = raise (scope_escape_exn kind)
let raise_scope_escape_exn ty = raise (scope_escape_exn ty)

exception Tags of label * label

Expand Down

0 comments on commit 597abee

Please sign in to comment.