From 9b0a51e647c55cf58619bcb463fadb922a6e1f5f Mon Sep 17 00:00:00 2001 From: Daniel Jilg Date: Mon, 13 Nov 2017 16:38:53 +0100 Subject: [PATCH] Fix another typo in `run` --- bonobo/_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonobo/_api.py b/bonobo/_api.py index e7362dd..7b8edc9 100644 --- a/bonobo/_api.py +++ b/bonobo/_api.py @@ -61,7 +61,7 @@ def register_api_group(*args): @register_graph_api 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.