Skip to content

Commit

Permalink
fix: use Read.file
Browse files Browse the repository at this point in the history
  • Loading branch information
Octachron committed Oct 14, 2024
1 parent 7a61c7a commit 434c9fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/unit.ml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let proj u = { u with more = () }


let read_file policy kind filename path : s =
let _name, code = Read.file kind filename in
let code = Read.file kind filename in
let precision, code = match code with
| Ok c -> Exact, c
| Error (Serialized e) ->
Expand Down

0 comments on commit 434c9fb

Please sign in to comment.