Merge pull request #223 from winsmith/develop

Fix various Typos in Documentation
This commit is contained in:
Romain Dorgueil
2017-11-14 08:34:51 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ def register_api_group(*args):
@register_graph_api @register_graph_api
def run(graph, *, plugins=None, services=None, strategy=None): def run(graph, *, plugins=None, services=None, strategy=None):
""" """
Main entry point of bonobo. It takes a graph and creates all the necessary plumbery around to execute it. Main entry point of bonobo. It takes a graph and creates all the necessary plumbing around to execute it.
The only necessary argument is a :class:`Graph` instance, containing the logic you actually want to execute. The only necessary argument is a :class:`Graph` instance, containing the logic you actually want to execute.

View File

@ -15,10 +15,10 @@ class ContextProcessor(Option):
It works like a yielding context manager, and is the recommended way to setup and teardown objects you'll need It works like a yielding context manager, and is the recommended way to setup and teardown objects you'll need
in the context of one execution. It's the way to overcome the stateless nature of transformations. in the context of one execution. It's the way to overcome the stateless nature of transformations.
The yielded values will be passed as positional arguments to the next context processors (order do matter), and The yielded values will be passed as positional arguments to the next context processors (order does matter), and
finally to the __call__ method of the transformation. finally to the __call__ method of the transformation.
Warning: this may change for a similar but simpler implementation, don't relly too much on it (yet). Warning: this may change for a similar but simpler implementation, don't rely too much on it (yet).
Example: Example: