From: Luke Kenneth Casson Leighton Date: Sat, 27 Apr 2019 22:45:06 +0000 (+0100) Subject: update docstrings X-Git-Tag: ls180-24jan2020~1168 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d193469ed3fb9720630d044b7e831fcee463ea50;p=ieee754fpu.git update docstrings --- 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