From d193469ed3fb9720630d044b7e831fcee463ea50 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 27 Apr 2019 23:45:06 +0100 Subject: [PATCH] update docstrings --- src/add/iocontrol.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/add/iocontrol.py b/src/add/iocontrol.py index 3d82027e..c3da0463 100644 --- a/src/add/iocontrol.py +++ b/src/add/iocontrol.py @@ -343,13 +343,14 @@ class Stage(metaclass=ABCMeta): class StageChain(StageCls): """ pass in a list of stages, and they will automatically be chained together via their input and output specs into a - combinatorial chain. + combinatorial chain, to create one giant combinatorial block. the end result basically conforms to the exact same Stage API. * input to this class will be the input of the first stage * output of first stage goes into input of second - * output of second goes into input into third (etc. etc.) + * output of second goes into input into third + * ... (etc. etc.) * the output of this class will be the output of the last stage NOTE: whilst this is very similar to ControlBase.connect(), it is -- 2.30.2