File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
crates/formality-prove/src/prove Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl Env {
118
118
} )
119
119
}
120
120
121
- fn fresh_substituion < V > (
121
+ fn fresh_substitution < V > (
122
122
& mut self ,
123
123
kinds : & [ ParameterKind ] ,
124
124
v : impl Fn ( ParameterKind , VarIndex ) -> V ,
@@ -142,7 +142,7 @@ impl Env {
142
142
T : Fold ,
143
143
{
144
144
let mut env = self . clone ( ) ;
145
- let subst = env. fresh_substituion ( b. kinds ( ) , |kind, var_index| UniversalVar {
145
+ let subst = env. fresh_substitution ( b. kinds ( ) , |kind, var_index| UniversalVar {
146
146
kind,
147
147
var_index,
148
148
} ) ;
@@ -153,7 +153,7 @@ impl Env {
153
153
where
154
154
T : Fold ,
155
155
{
156
- let subst = self . fresh_substituion ( b. kinds ( ) , |kind, var_index| UniversalVar {
156
+ let subst = self . fresh_substitution ( b. kinds ( ) , |kind, var_index| UniversalVar {
157
157
kind,
158
158
var_index,
159
159
} ) ;
@@ -165,7 +165,7 @@ impl Env {
165
165
T : Fold ,
166
166
{
167
167
let mut env = self . clone ( ) ;
168
- let subst = env. fresh_substituion ( b. kinds ( ) , |kind, var_index| ExistentialVar {
168
+ let subst = env. fresh_substitution ( b. kinds ( ) , |kind, var_index| ExistentialVar {
169
169
kind,
170
170
var_index,
171
171
} ) ;
You can’t perform that action at this time.
0 commit comments