Skip to content

Commit 4bc75dd

Browse files
Update later.v (#3)
* Update later.v "forall quantify," to my untrained eye, looks so _wrong_ because I'm used to "forall" being a preposition and "universally" being an adverb. Does this change in the iris world? * swap 'forall' for 'universally' --------- Co-authored-by: Simon Gregersen <gregersen@cs.au.dk>
1 parent a28062e commit 4bc75dd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

exercises/later.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ Proof.
184184
(**
185185
The tactic for Löb induction, [iLöb], requires us to specify the
186186
name of the induction hypothesis, which we here call ["IH"].
187-
Optionally, it can also forall quantify any of our variables before
188-
performing induction. We here forall quantify [x] as it changes for
187+
Optionally, it can also universally quantify over any of our variables
188+
before performing induction. We here forall quantify [x] as it changes for
189189
every recursive call.
190190
*)
191191
iLöb as "IH" forall (x).

theories/later.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ Proof.
187187
(**
188188
The tactic for Löb induction, [iLöb], requires us to specify the
189189
name of the induction hypothesis, which we here call ["IH"].
190-
Optionally, it can also forall quantify any of our variables before
191-
performing induction. We here forall quantify [x] as it changes for
190+
Optionally, it can also universally quantify over any of our variables
191+
before performing induction. We here forall quantify [x] as it changes for
192192
every recursive call.
193193
*)
194194
iLöb as "IH" forall (x).

0 commit comments

Comments
 (0)