@@ -356,7 +356,7 @@ cdef class Dependency(Provider):
356
356
This provider is used for description of dependency interface. That might
357
357
be useful when dependency could be provided in the client's code only,
358
358
but it's interface is known. Such situations could happen when required
359
- dependency has non-determenistic list of dependencies itself.
359
+ dependency has non-deterministic list of dependencies itself.
360
360
361
361
.. code-block:: python
362
362
@@ -445,7 +445,7 @@ cdef class ExternalDependency(Dependency):
445
445
This provider is used for description of dependency interface. That might
446
446
be useful when dependency could be provided in the client's code only,
447
447
but it's interface is known. Such situations could happen when required
448
- dependency has non-determenistic list of dependencies itself.
448
+ dependency has non-deterministic list of dependencies itself.
449
449
450
450
.. code-block:: python
451
451
@@ -607,7 +607,7 @@ cdef class OverridingContext(object):
607
607
""" Provider overriding context.
608
608
609
609
:py:class:`OverridingContext` is used by :py:meth:`Provider.override` for
610
- implemeting ``with`` contexts. When :py:class:`OverridingContext` is
610
+ implementing ``with`` contexts. When :py:class:`OverridingContext` is
611
611
closed, overriding that was created in this context is dropped also.
612
612
613
613
.. code-block:: python
@@ -739,7 +739,7 @@ cdef class Callable(Provider):
739
739
return self
740
740
741
741
def set_args (self , *args ):
742
- """ Set postional argument injections.
742
+ """ Set positional argument injections.
743
743
744
744
Existing positional argument injections are dropped.
745
745
@@ -750,7 +750,7 @@ cdef class Callable(Provider):
750
750
return self
751
751
752
752
def clear_args (self ):
753
- """ Drop postional argument injections.
753
+ """ Drop positional argument injections.
754
754
755
755
:return: Reference ``self``
756
756
"""
@@ -1272,15 +1272,15 @@ cdef class Factory(Provider):
1272
1272
return self .__instantiator.args
1273
1273
1274
1274
def add_args (self , *args ):
1275
- """ Add __init__ postional argument injections.
1275
+ """ Add __init__ positional argument injections.
1276
1276
1277
1277
:return: Reference ``self``
1278
1278
"""
1279
1279
self .__instantiator.add_args(* args)
1280
1280
return self
1281
1281
1282
1282
def set_args (self , *args ):
1283
- """ Set __init__ postional argument injections.
1283
+ """ Set __init__ positional argument injections.
1284
1284
1285
1285
Existing __init__ positional argument injections are dropped.
1286
1286
@@ -1290,7 +1290,7 @@ cdef class Factory(Provider):
1290
1290
return self
1291
1291
1292
1292
def clear_args (self ):
1293
- """ Drop __init__ postional argument injections.
1293
+ """ Drop __init__ positional argument injections.
1294
1294
1295
1295
:return: Reference ``self``
1296
1296
"""
0 commit comments