From f4c2e763dc038382bd99187911e9aa89e6a9090e Mon Sep 17 00:00:00 2001 From: Zeyi Wang Date: Mon, 11 Dec 2017 20:50:13 +0800 Subject: [PATCH] Fix a small typo ill -> will --- docs/tutorial/tut03.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/tut03.rst b/docs/tutorial/tut03.rst index 4875bd8..61366c2 100644 --- a/docs/tutorial/tut03.rst +++ b/docs/tutorial/tut03.rst @@ -13,7 +13,7 @@ Class-based transformations and configurables Bonobo is a bit dumb. If something is callable, it considers it can be used as a transformation, and it's up to the user to provide callables that logically fits in a graph. -You can use plain python objects with a `__call__()` method, and it ill just work. +You can use plain python objects with a `__call__()` method, and it will just work. As a lot of transformations needs common machinery, there is a few tools to quickly build transformations, most of them requiring your class to subclass :class:`bonobo.config.Configurable`.