From 3b32f4446d3b4b881a239fdf6802506cf94133e9 Mon Sep 17 00:00:00 2001 From: Aldo Mateli Date: Sat, 4 May 2024 23:55:29 +0100 Subject: [PATCH] Fix typo --- wireup/ioc/dependency_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wireup/ioc/dependency_container.py b/wireup/ioc/dependency_container.py index 54e9efc..d69c148 100644 --- a/wireup/ioc/dependency_container.py +++ b/wireup/ioc/dependency_container.py @@ -175,7 +175,7 @@ def clear_initialized_objects(self) -> None: and cause it to create new instances when they are requested to be injected. This can be useful in tests in a `unittest.TestCase.setUp` method or pytest autouse=True fixture, - allowing you to have a fresh copy of the container with no previously intitialized instances + allowing you to have a fresh copy of the container with no previously initialized instances to make test cases independent of each-other. """ self.__initialized_objects.clear()