From 98e5615dbc64747f16a0876e9a891feaff71e90c Mon Sep 17 00:00:00 2001 From: Walter Smuts Date: Thu, 8 Jun 2023 13:35:52 +0200 Subject: [PATCH] Typos: change all uses of inferable to inferrable Achieves consistency... --- libs/papers/Language/IntrinsicScoping/TypeTheory.idr | 6 +++--- libs/papers/Language/TypeTheory.idr | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/libs/papers/Language/IntrinsicScoping/TypeTheory.idr b/libs/papers/Language/IntrinsicScoping/TypeTheory.idr index d389a5198..c64aa33f5 100644 --- a/libs/papers/Language/IntrinsicScoping/TypeTheory.idr +++ b/libs/papers/Language/IntrinsicScoping/TypeTheory.idr @@ -63,9 +63,9 @@ data Infer : Scoped where -- This is fairly unconventional: in order to support overloaded -- data constructors disambiguated in a type-direct manner, we would -- typically put zero, suc, & friends in `Check`. - ||| The zero constructor is inferable + ||| The zero constructor is inferrable Zro : Infer f g - ||| The successor constructor is inferable + ||| The successor constructor is inferrable Suc : Check f g -> Infer f g ||| Pi is inferrable Pi : (a : Check f g) -> (b : Abs Check f g) -> Infer f g @@ -82,7 +82,7 @@ infixl 3 `App` total data Check : Scoped where - ||| Inferable terms are trivially checkable + ||| Inferrable terms are trivially checkable Emb : Infer f g -> Check f g ||| A function binding its argument Lam : Abs Check f g -> Check f g diff --git a/libs/papers/Language/TypeTheory.idr b/libs/papers/Language/TypeTheory.idr index f909dd970..2065a9066 100644 --- a/libs/papers/Language/TypeTheory.idr +++ b/libs/papers/Language/TypeTheory.idr @@ -74,7 +74,7 @@ namespace Section2 -- Raw terms are neither scopechecked nor typecked - ||| Inferable terms know what their type is + ||| Inferrable terms know what their type is data Infer : Type ||| Checkable terms need to be checked against a type @@ -97,7 +97,7 @@ namespace Section2 total data Check : Type where - ||| Inferable terms are trivially checkable + ||| Inferrable terms are trivially checkable Emb : Infer -> Check ||| A function binding its argument Lam : Abs Check -> Check @@ -365,7 +365,7 @@ namespace Section3 total data Check : Type where - ||| Inferable terms are trivially checkable + ||| Inferrable terms are trivially checkable Emb : Infer -> Check ||| A function binding its argument Lam : Abs Check -> Check @@ -587,9 +587,9 @@ namespace Section4 -- ps : Abs (Abs Check) -- n : Check Rec : (pred, pz, ps : Check) -> (n : Check) -> Infer - ||| The zero constructor is inferable + ||| The zero constructor is inferrable Zro : Infer - ||| The successor constructor is inferable + ||| The successor constructor is inferrable Suc : Check -> Infer ||| Pi is inferrable Pi : (a : Check) -> (b : Abs Check) -> Infer @@ -606,7 +606,7 @@ namespace Section4 total data Check : Type where - ||| Inferable terms are trivially checkable + ||| Inferrable terms are trivially checkable Emb : Infer -> Check ||| A function binding its argument Lam : Abs Check -> Check