From 21da2332ba62efad574b3bc89618858b13cf587f Mon Sep 17 00:00:00 2001 From: Hyper <46067571+hypergonial@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:10:14 +0100 Subject: [PATCH] Fix more typos --- alluka/_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alluka/_client.py b/alluka/_client.py index 77bf7f34..6a3f104a 100644 --- a/alluka/_client.py +++ b/alluka/_client.py @@ -79,9 +79,9 @@ def inject(*, type: typing.Any = None) -> typing.Any: # noqa: A002 def inject( *, callback: typing.Optional[alluka.CallbackSig[_T]] = None, type: typing.Any = None # noqa: A002 ) -> typing.Any: - """Decare a keyword-argument as requiring an injected dependency. + """Declare a keyword-argument as requiring an injected dependency. - This may be assigned to an arugment's default value to declare injection + This may be assigned to an argument's default value to declare injection or as a part of its Annotated metadata. !!! note