From 72ae354810610ab32872e02dd537cbf7c4e00425 Mon Sep 17 00:00:00 2001 From: Daniel Jilg Date: Mon, 13 Nov 2017 16:31:00 +0100 Subject: [PATCH] Fix two typos in the ContextProcessor documentation --- bonobo/config/processors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bonobo/config/processors.py b/bonobo/config/processors.py index 73c9949..3740192 100644 --- a/bonobo/config/processors.py +++ b/bonobo/config/processors.py @@ -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 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. - 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: