Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/pypeline.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Johnson <ian.johnson@appliedlanguage.com>2012-08-15 13:02:58 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-08-15 13:02:58 +0400
commit92579c643dfe6efa3009b19d93b294e32a766529 (patch)
tree980bac0dabed95bb8e564ccc4b9a86b6e9df32fc
parentf35d5d48cab08c22998ef4392b3cc1ee9193b200 (diff)
parent4e8e6a6b0e5aadb63523e5efbf52447fd869167a (diff)
Merge branch 'master' of https://github.com/ianj-als/pypeline
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0be055a..69b588e 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ The input and output forming functions shall take two arguments: a value and the
input_forming_function :: a -> s -> b
output_forming_function :: a -> s -> b
-The state mutator function shall take one argument and return a mutated state object if desired. The state mutator function is applied after all the other functions have been applied. If no state mutator function is specified the state flows through the component unchanged.
+The state mutator function shall take one argument, the state object, and return a mutated state object if desired. The state mutator function is applied after all the other functions have been applied. If no state mutator function is specified the state flows through the component unchanged.
#### Constructing a Subprocess Based Pipeline Component
@@ -109,7 +109,7 @@ The output from the previous component is applied to the input forming function
input_forming_function :: a -> s -> b
output_forming_function :: a -> s -> b
-The state mutator function shall take one argument and return a mutated state object if desired. If no state mutator function is specified the state flows through the component unchanged.
+The state mutator function shall take one argument, the state object, and return a mutated state object if desired. If no state mutator function is specified the state flows through the component unchanged.
### Wire Functions