From df23cc42f405f109991d1ed73b70d82486eae336 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 17 Jun 2022 07:13:07 -0400 Subject: [PATCH] Common: Fix spelling error Co-authored-by: VakarisZ <36815064+VakarisZ@users.noreply.github.com> --- monkey/common/di_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/common/di_container.py b/monkey/common/di_container.py index 71d337ab3..2bdc68652 100644 --- a/monkey/common/di_container.py +++ b/monkey/common/di_container.py @@ -65,7 +65,7 @@ class DIContainer: """ Register an instance as a convention - At times — particularly when dealing with primative types — it can be useful to define a + At times — particularly when dealing with primitive types — it can be useful to define a convention for how dependencies should be resolved. For example, you might want any class that specifies `hostname: str` in its constructor to receive the hostname of the system it's running on. Registering a convention allows you to assign an object instance to a type, name