@@ -125,7 +125,7 @@ public final class Resolver {
125125 return main. register ( type, name: name, factory: factory)
126126 }
127127
128- /// Static shortcut function used to register a specifc Service type and its instantiating factory method.
128+ /// Static shortcut function used to register a specific Service type and its instantiating factory method.
129129 ///
130130 /// - parameter type: Type of Service being registered. Optional, may be inferred by factory result type.
131131 /// - parameter name: Named variant of Service being registered.
@@ -139,7 +139,7 @@ public final class Resolver {
139139 return main. register ( type, name: name, factory: factory)
140140 }
141141
142- /// Static shortcut function used to register a specifc Service type and its instantiating factory method with multiple argument support.
142+ /// Static shortcut function used to register a specific Service type and its instantiating factory method with multiple argument support.
143143 ///
144144 /// - parameter type: Type of Service being registered. Optional, may be inferred by factory result type.
145145 /// - parameter name: Named variant of Service being registered.
@@ -153,7 +153,7 @@ public final class Resolver {
153153 return main. register ( type, name: name, factory: factory)
154154 }
155155
156- /// Registers a specifc Service type and its instantiating factory method.
156+ /// Registers a specific Service type and its instantiating factory method.
157157 ///
158158 /// - parameter type: Type of Service being registered. Optional, may be inferred by factory result type.
159159 /// - parameter name: Named variant of Service being registered.
@@ -173,7 +173,7 @@ public final class Resolver {
173173 return ResolverOptions ( registration: registration)
174174 }
175175
176- /// Registers a specifc Service type and its instantiating factory method.
176+ /// Registers a specific Service type and its instantiating factory method.
177177 ///
178178 /// - parameter type: Type of Service being registered. Optional, may be inferred by factory result type.
179179 /// - parameter name: Named variant of Service being registered.
@@ -193,7 +193,7 @@ public final class Resolver {
193193 return ResolverOptions ( registration: registration)
194194 }
195195
196- /// Registers a specifc Service type and its instantiating factory method with multiple argument support.
196+ /// Registers a specific Service type and its instantiating factory method with multiple argument support.
197197 ///
198198 /// - parameter type: Type of Service being registered. Optional, may be inferred by factory result type.
199199 /// - parameter name: Named variant of Service being registered.
@@ -444,7 +444,7 @@ public typealias ResolverFactoryAnyArguments<Service> = (_ resolver: Resolver, _
444444public typealias ResolverFactoryMutator < Service> = ( _ resolver: Resolver , _ service: Service ) -> Void
445445public typealias ResolverFactoryMutatorArgumentsN < Service> = ( _ resolver: Resolver , _ service: Service , _ args: Resolver . Args ) -> Void
446446
447- /// A ResolverOptions instance is returned by a registration function in order to allow additonal configuratiom . (e.g. scopes, etc.)
447+ /// A ResolverOptions instance is returned by a registration function in order to allow additional configuration . (e.g. scopes, etc.)
448448public struct ResolverOptions < Service> {
449449
450450 // MARK: - Parameters
0 commit comments