Skip to content

Commit 17e1193

Browse files
committed
added 'step' to description of process callees
1 parent 82f823b commit 17e1193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ __core.async.flow__ provides *concrete* implementations of two more abstractions
1414

1515
All you need to do in your application is:
1616

17-
1. Define ordinary, often pure, data->data functions that the processes will run in their inner loop to do the *computational* part of processing messages. These functions do not handle channels or threads or lifecycle, and do not even know they are running in a flow. They can be tested in isolation, and hot-reloaded. If they encounter a problem they can, and should, just throw an exception. The process will take care of it from there.
17+
1. Define ordinary, often pure, data->data functions that the processes will run in their inner loop to do the *computational* part of processing messages (aka 'step' functions). These functions do not handle channels or threads or lifecycle, and do not even know they are running in a flow. They can be tested in isolation, and hot-reloaded. If they encounter a problem they can, and should, just throw an exception. The process will take care of it from there.
1818

1919
2. Define a flow by creating a data structure that enumerates the processes and the connections between their inputs and outputs, as well as various configuration settings for both.
2020

0 commit comments

Comments
 (0)