Skip to content
Snippets Groups Projects
Commit 87ff20d3 authored by Martin Lange's avatar Martin Lange
Browse files

minor fix book text

parent 809320e6
No related branches found
No related tags found
1 merge request!134Allow trigger component to get external starting time
Pipeline #123827 passed with stages
in 2 minutes and 34 seconds
......@@ -50,8 +50,8 @@ Here is a simple example coupling two components:
...
In the above example, we couple a simple generator component (:class:`.modules.CallbackGenerator`)
with a live plotting component (:class:`.modules.TimeSeriesView`).
In the above example, we couple a simplex noise generator component (:class:`.modules.SimplexNoise`)
with a consumer component for debug printing (:class:`.modules.DebugConsumer`).
Note:
with package :mod:`finam` installed, simply run the above scripts with:
......@@ -78,7 +78,7 @@ An input can be connected to an output using either ``>>`` (as in the examples),
.. code-block:: Python
generator.outputs["Value"] >> plot.inputs["Value"]
generator.outputs["Value"].chain(plot.inputs["Value"])
generator.outputs["Value"].chain(consumer.inputs["Value"])
Adapters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment