aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/sphinx/proof-engine/tactics.rst4
-rw-r--r--pretyping/vnorm.ml2
-rw-r--r--theories/Init/Logic.v2
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/sphinx/proof-engine/tactics.rst b/doc/sphinx/proof-engine/tactics.rst
index 45667b099..ec085a71e 100644
--- a/doc/sphinx/proof-engine/tactics.rst
+++ b/doc/sphinx/proof-engine/tactics.rst
@@ -1418,7 +1418,7 @@ analysis on inductive or co-inductive objects (see :ref:`inductive-definitions`)
dependent in the goal after application of :n:`destruct`, it is erased
(to avoid erasure, use parentheses, as in :n:`destruct (@ident)`).
- + If term is a num, then destruct num behaves asintros until num
+ + If term is a num, then destruct num behaves as intros until num
followed by destruct applied to the last introduced hypothesis.
.. note::
@@ -4190,7 +4190,7 @@ datatype: see :ref:`quote` for the full details.
Happens when quote is not able to perform inversion properly.
-.. tacv:: quote ident {* @ident}
+.. tacv:: quote @ident {* @ident}
All terms that are built only with :n:`{* @ident}` will be considered by quote
as constants rather than variables.
diff --git a/pretyping/vnorm.ml b/pretyping/vnorm.ml
index 440076c16..c94408050 100644
--- a/pretyping/vnorm.ml
+++ b/pretyping/vnorm.ml
@@ -311,7 +311,7 @@ and nf_predicate env sigma ind mip params v pT =
let dom = mkApp(mkIndU ind,Array.append params rargs) in
let body = nf_vtype (push_rel (LocalAssum (name,dom)) env) sigma vb in
mkLambda(name,dom,body)
- | _ -> nf_val env sigma v crazy_type
+ | _ -> assert false
and nf_args env sigma vargs ?from:(f=0) t =
let t = ref t in
diff --git a/theories/Init/Logic.v b/theories/Init/Logic.v
index 817581cb2..9d60cf54c 100644
--- a/theories/Init/Logic.v
+++ b/theories/Init/Logic.v
@@ -459,7 +459,7 @@ Proof.
destruct e. reflexivity.
Defined.
-(** The goupoid structure of equality *)
+(** The groupoid structure of equality *)
Theorem eq_trans_refl_l : forall A (x y:A) (e:x=y), eq_trans eq_refl e = e.
Proof.