@@ -177,7 +177,7 @@ private func tryReplaceExistentialArchetype(of apply: ApplyInst, _ context: Simp
177
177
178
178
let newApply = builder. createApply (
179
179
function: apply. callee,
180
- apply. replaceOpenedArchetypeInSubstituations ( withConcreteType: concreteType, context) ,
180
+ apply. replaceOpenedArchetypeInSubstitutions ( withConcreteType: concreteType, context) ,
181
181
arguments: apply. replaceExistentialArchetypeInArguments ( withConcreteType: concreteType, context) ,
182
182
isNonThrowing: apply. isNonThrowing, isNonAsync: apply. isNonAsync,
183
183
specializationInfo: apply. specializationInfo)
@@ -197,7 +197,7 @@ private func tryReplaceExistentialArchetype(of tryApply: TryApplyInst, _ context
197
197
198
198
builder. createTryApply (
199
199
function: tryApply. callee,
200
- tryApply. replaceOpenedArchetypeInSubstituations ( withConcreteType: concreteType, context) ,
200
+ tryApply. replaceOpenedArchetypeInSubstitutions ( withConcreteType: concreteType, context) ,
201
201
arguments: tryApply. replaceExistentialArchetypeInArguments ( withConcreteType: concreteType, context) ,
202
202
normalBlock: tryApply. normalBlock, errorBlock: tryApply. errorBlock,
203
203
isNonAsync: tryApply. isNonAsync,
@@ -269,7 +269,7 @@ private extension FullApplySite {
269
269
return Array ( newArgs)
270
270
}
271
271
272
- func replaceOpenedArchetypeInSubstituations (
272
+ func replaceOpenedArchetypeInSubstitutions (
273
273
withConcreteType concreteType: CanonicalType ,
274
274
_ context: SimplifyContext
275
275
) -> SubstitutionMap {
0 commit comments