Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/later.v
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ Proof.
(**
The tactic for Löb induction, [iLöb], requires us to specify the
name of the induction hypothesis, which we here call ["IH"].
Optionally, it can also forall quantify any of our variables before
performing induction. We here forall quantify [x] as it changes for
Optionally, it can also universally quantify over any of our variables
before performing induction. We here forall quantify [x] as it changes for
every recursive call.
*)
iLöb as "IH" forall (x).
Expand Down
4 changes: 2 additions & 2 deletions theories/later.v
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ Proof.
(**
The tactic for Löb induction, [iLöb], requires us to specify the
name of the induction hypothesis, which we here call ["IH"].
Optionally, it can also forall quantify any of our variables before
performing induction. We here forall quantify [x] as it changes for
Optionally, it can also universally quantify over any of our variables
before performing induction. We here forall quantify [x] as it changes for
every recursive call.
*)
iLöb as "IH" forall (x).
Expand Down