Skip to content

Commit

Permalink
Fix printing of change tactic, which was printed as `change_no_chec…
Browse files Browse the repository at this point in the history
…k` and vice versa
  • Loading branch information
LasseBlaauwbroek committed Sep 6, 2020
1 parent 48f465d commit 5a417e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/ltac/pptactic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ let pr_goal_selector ~toplevel s =
++ pr_non_empty_arg (pr_clauses (Some true) pr.pr_name) h
)
| TacChange (check,op,c,h) ->
let name = if check then "change_no_check" else "change" in
let name = if check then "change" else "change_no_check" in
hov 1 (
primitive name ++ brk (1,1)
++ (
Expand Down

0 comments on commit 5a417e9

Please sign in to comment.