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 12:44:15 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-08-15 12:44:15 +0400
commit4e8e6a6b0e5aadb63523e5efbf52447fd869167a (patch)
tree765e7fda4a1ad67055ff21b9151d8fccc5bb361c /README.md
parent9a805fa031cd40e3d128ccc12a0d0007bbca0869 (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index ae3d7e7..a094196 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