update docstrings
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 27 Apr 2019 22:45:06 +0000 (23:45 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 27 Apr 2019 22:45:06 +0000 (23:45 +0100)
src/add/iocontrol.py

index 3d82027e68878049a2ff95b0ea6c638afa5edfad..c3da046379533d6532e6020d1219966ffb380b99 100644 (file)
@@ -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