Skip to content

Commit

Permalink
Fix a bunch of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Sep 11, 2023
1 parent 5610e2a commit 5656f7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions injector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def install(self, module: _InstallableModuleType) -> None:
In this context the module is one of the following:
* function taking the :class:`Binder` as it's only parameter
* function taking the :class:`Binder` as its only parameter
::
Expand All @@ -540,7 +540,7 @@ def configure(binder):
binder.install(configure)
* instance of :class:`Module` (instance of it's subclass counts)
* instance of :class:`Module` (instance of its subclass counts)
::
Expand Down Expand Up @@ -1005,7 +1005,7 @@ def create_object(self, cls: Type[T], additional_kwargs: Any = None) -> T:
def call_with_injection(
self, callable: Callable[..., T], self_: Any = None, args: Any = (), kwargs: Any = {}
) -> T:
"""Call a callable and provide it's dependencies if needed.
"""Call a callable and provide its dependencies if needed.
:param self_: Instance of a class callable belongs to if it's a method,
None otherwise.
Expand Down

0 comments on commit 5656f7c

Please sign in to comment.