# HG changeset patch # User Adam Chlipala # Date 1439668451 14400 # Node ID 8dddcaaeb67a5f2c01e3da498a103546307bbf7c # Parent d53c077a630c3ac6097c89e34c271169607384ff Two English errors fixed diff -r d53c077a630c -r 8dddcaaeb67a src/LogicProg.v --- a/src/LogicProg.v Wed Aug 05 18:19:59 2015 -0400 +++ b/src/LogicProg.v Sat Aug 15 15:54:11 2015 -0400 @@ -398,7 +398,7 @@ Hint Resolve eq_trans : slow. (* end thide *) -Example three_minus_four_zero : exists x, 1 + x = 0. +Example from_one_to_zero : exists x, 1 + x = 0. (* begin thide *) Time eauto. (** %\vspace{-.15in}% @@ -777,7 +777,7 @@ Hint Resolve plus_0 times_1. -(** We finish with one more arithmetic lemma that is particularly specialized to this theorem. This fact happens to follow by the axioms of the _ring_ algebraic structure, so, since the naturals form a ring, we can use the built-in tactic %\index{tactics!ring}%[ring]. *) +(** We finish with one more arithmetic lemma that is particularly specialized to this theorem. This fact happens to follow by the axioms of the _ring_ algebraic structure, so, since the naturals form a semiring, we can use the built-in tactic %\index{tactics!ring}%[ring]. *) Require Import Arith Ring.