Merge pull request #233 from uduse/uduse-patch-1

Fix a small typo
This commit is contained in:
Romain Dorgueil
2017-12-12 10:53:35 +01:00
committed by GitHub

View File

@ -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`.