From 36c5a84241841fadffaee32c710680b3c0d88eb0 Mon Sep 17 00:00:00 2001 From: Robbert Krebbers <mail@robbertkrebbers.nl> Date: Wed, 23 Nov 2016 13:07:59 +0100 Subject: [PATCH] Fix typo. --- prelude/tactics.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prelude/tactics.v b/prelude/tactics.v index 40d6622dd..381757576 100644 --- a/prelude/tactics.v +++ b/prelude/tactics.v @@ -357,7 +357,7 @@ Tactic Notation "iter" tactic(tac) tactic(l) := let rec go l := match l with ?x :: ?l => tac x || go l end in go l. -(** Given H : [A_1 → ... → A_n → B] (where each [A_i] is non-dependent), the +(** Given [H : A_1 → ... → A_n → B] (where each [A_i] is non-dependent), the tactic [feed tac H tac_by] creates a subgoal for each [A_i] and calls [tac p] with the generated proof [p] of [B]. *) Tactic Notation "feed" tactic(tac) constr(H) := -- GitLab