Skip to content
Snippets Groups Projects
Commit d36fe30f authored by Jonas Kastberg's avatar Jonas Kastberg
Browse files

Aligned fork_chan tactic binders with protocols

parent ac878307
No related branches found
No related tags found
No related merge requests found
Pipeline #95894 passed
......@@ -492,8 +492,8 @@ Tactic Notation "wp_new_chan" constr(prot) "as"
Tactic Notation "wp_fork_chan" constr(prot) "as"
simple_intropattern(c1) constr(pat1) "and" simple_intropattern(c2) constr(pat2) :=
wp_smart_apply (fork_chan_spec prot); [iIntros (c1); iIntros pat1|
iIntros (c2); iIntros pat2].
wp_smart_apply (fork_chan_spec prot); [iIntros (c2); iIntros pat2|
iIntros (c1); iIntros pat1].
Tactic Notation "wp_fork_chan" constr(prot) :=
wp_smart_apply (fork_chan_spec prot).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment