fixing typos

This commit is contained in:
Noah Diewald 2021-05-01 22:52:43 -04:00
parent 2e5a9d6656
commit dc77a66d99
No known key found for this signature in database
GPG Key ID: EC2BAE1E100A5509
1 changed files with 8 additions and 8 deletions

View File

@ -134,7 +134,7 @@ Definition mtrip := mcat * mform * lexeme.
with mtrips is not good enough. Non-grammatical triples check. We need with mtrips is not good enough. Non-grammatical triples check. We need
to be able to specify which are legal triples. *) to be able to specify which are legal triples. *)
Check ( [ ke, base ] , "foot" , KEKI ). Check ( [ ke ; base ] , "foot" , KEKI ).
(** Here I define Fentry, which is a predicate that is proveable when (** Here I define Fentry, which is a predicate that is proveable when
an mtrip is a valid lexical entity. *) an mtrip is a valid lexical entity. *)
@ -222,7 +222,7 @@ containing forms. *)
Axiom add_kuna : forall Axiom add_kuna : forall
(mt : mtrip), (Fentry mt) -> (mt : mtrip), (Fentry mt) ->
(lem (fst (fst mt)) [ bobase ]) -> (lem (fst (fst mt)) [ bostem ]) ->
Fentry (cons bo (fst (fst mt)), Fentry (cons bo (fst (fst mt)),
suffix_bo (snd (fst mt)), suffix_bo (snd (fst mt)),
(snd mt)). (snd mt)).
@ -231,7 +231,7 @@ Axiom add_kuna : forall
Axiom add_plta : forall Axiom add_plta : forall
(mt : mtrip), (Fentry mt) -> (mt : mtrip), (Fentry mt) ->
(lem (fst (fst mt)) [ pabase ]) -> (lem (fst (fst mt)) [ pastem ]) ->
Fentry (cons pa (fst (fst mt)), Fentry (cons pa (fst (fst mt)),
suffix_pa (snd (fst mt)), suffix_pa (snd (fst mt)),
(snd mt)). (snd mt)).
@ -248,11 +248,11 @@ In order to hold somewhat to the spirit of the complete theory, I
define Sentry which is the predicate for valid lexical entries. *) define Sentry which is the predicate for valid lexical entries. *)
Inductive syncat : Set := Inductive syncat : Set :=
| V_fut_1 : matom | V_fut_1 : syncat
| V_fut_3 : matom | V_fut_3 : syncat
| V_fut_part : matom | V_fut_part : syncat
| V_fut_part_aux_1 : matom | V_fut_part_aux_1 : syncat
| V_fut_part_aux_3 : matom. | V_fut_part_aux_3 : syncat.
Axiom Sentry : syncat -> Prop. Axiom Sentry : syncat -> Prop.