@@ -181,7 +181,7 @@ def _wrap_with_after(responder, action, action_args, action_kwargs, is_async):
181181 responder: The responder method to wrap.
182182 action: A function with a signature similar to a resource responder
183183 method, taking the form ``func(req, resp, resource)``.
184- action_args: Additional positional agruments to pass to *action*.
184+ action_args: Additional positional arguments to pass to *action*.
185185 action_kwargs: Additional keyword arguments to pass to *action*.
186186 is_async: Set to ``True`` for cythonized responders that are
187187 actually coroutine functions, since such responders can not
@@ -227,7 +227,7 @@ def _wrap_with_before(responder, action, action_args, action_kwargs, is_async):
227227 responder: The responder method to wrap.
228228 action: A function with a similar signature to a resource responder
229229 method, taking the form ``func(req, resp, resource, params)``.
230- action_args: Additional positional agruments to pass to *action*.
230+ action_args: Additional positional arguments to pass to *action*.
231231 action_kwargs: Additional keyword arguments to pass to *action*.
232232 is_async: Set to ``True`` for cythonized responders that are
233233 actually coroutine functions, since such responders can not
@@ -289,7 +289,7 @@ def _merge_responder_args(args, kwargs, argnames):
289289 # signature.
290290 for i , argname in enumerate (argnames ):
291291 # NOTE(kgriffs): extra_argnames may contain keyword arguments,
292- # which wont be in the args list, and are already in the kwargs
292+ # which won't be in the args list, and are already in the kwargs
293293 # dict anyway, so detect and skip them.
294294 if argname not in kwargs :
295295 kwargs [argname ] = args [i ]
0 commit comments