Skip to content

Commit

Permalink
Merge pull request #2994 from FStarLang/thibault_typo_proj_pair
Browse files Browse the repository at this point in the history
Fix typo in OCaml code for extracting elements of a pair
  • Loading branch information
mtzguido authored Jul 19, 2023
2 parents 59a320f + 27e5a20 commit 84ca0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocaml/fstar-lib/FStar_Pervasives_Native.ml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ type ('a,'b) tuple2 = 'a * 'b[@@deriving yojson,show]
let fst = Stdlib.fst
let snd = Stdlib.snd

let __proj__Mktuple2__1 = fst
let __proj__Mktuple2__2 = snd
let __proj__Mktuple2__item___1 = fst
let __proj__Mktuple2__item___2 = snd

type ('a,'b,'c) tuple3 =
'a* 'b* 'c
Expand Down

0 comments on commit 84ca0d4

Please sign in to comment.