Skip to content

Commit

Permalink
partially revert previous commit: use Require Import instead of Requi…
Browse files Browse the repository at this point in the history
…re Export for efficiency reason
  • Loading branch information
fblanqui committed Nov 28, 2024
1 parent 069da89 commit eed37d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/export/coq.ml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ let set_requiring : string -> unit = fun f -> require := Some f
let print : ast -> unit = fun s ->
let oc = stdout in
begin match !require with
| Some f -> string oc ("Require Export "^f^".\n")
| Some f -> string oc ("Require Import "^f^".\n")
| None -> ()
end;
ast oc s

0 comments on commit eed37d2

Please sign in to comment.