Skip to content

Commit db332ec

Browse files
authored
Fix a bunch of typos (#232)
1 parent 5610e2a commit db332ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

injector/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def install(self, module: _InstallableModuleType) -> None:
531531
532532
In this context the module is one of the following:
533533
534-
* function taking the :class:`Binder` as it's only parameter
534+
* function taking the :class:`Binder` as its only parameter
535535
536536
::
537537
@@ -540,7 +540,7 @@ def configure(binder):
540540
541541
binder.install(configure)
542542
543-
* instance of :class:`Module` (instance of it's subclass counts)
543+
* instance of :class:`Module` (instance of its subclass counts)
544544
545545
::
546546
@@ -1005,7 +1005,7 @@ def create_object(self, cls: Type[T], additional_kwargs: Any = None) -> T:
10051005
def call_with_injection(
10061006
self, callable: Callable[..., T], self_: Any = None, args: Any = (), kwargs: Any = {}
10071007
) -> T:
1008-
"""Call a callable and provide it's dependencies if needed.
1008+
"""Call a callable and provide its dependencies if needed.
10091009
10101010
:param self_: Instance of a class callable belongs to if it's a method,
10111011
None otherwise.

0 commit comments

Comments
 (0)