Skip to content

Commit

Permalink
Merge pull request #873 from hacspec/core-fmt
Browse files Browse the repository at this point in the history
Small PR to fix circularity in Core.Fmt.fsti
  • Loading branch information
W95Psp authored Sep 3, 2024
2 parents fd62ddd + 318fdfc commit c707da1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proof-libs/fstar/core/Core.Fmt.fsti
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ type t_Result = Core.Result.t_Result unit t_Error

val t_Formatter: Type0
class t_Display t_Self = {
f_fmt_pre: t_Self -> Core.Fmt.t_Formatter -> bool;
f_fmt_post: t_Self -> Core.Fmt.t_Formatter -> (Core.Fmt.t_Formatter & Core.Result.t_Result Prims.unit Core.Fmt.t_Error) -> bool;
f_fmt: t_Self -> Core.Fmt.t_Formatter -> (Core.Fmt.t_Formatter & Core.Result.t_Result Prims.unit Core.Fmt.t_Error)
f_fmt_pre: t_Self -> t_Formatter -> bool;
f_fmt_post: t_Self -> t_Formatter -> (t_Formatter & Core.Result.t_Result Prims.unit t_Error) -> bool;
f_fmt: t_Self -> t_Formatter -> (t_Formatter & Core.Result.t_Result Prims.unit t_Error)
}

val t_Arguments: Type0
Expand Down

0 comments on commit c707da1

Please sign in to comment.