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-09-13 15:27:34 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2012-09-13 15:27:34 +0400
commitb91bbc0a303859390c22384b16f96893610690e1 (patch)
treef95f73285855ebb022d794b4bdb37b4ef34c0077
parent571986aae2f10a4275fe5ed70bf97f7e756b32e7 (diff)
Update README.md
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index a76a819..beb71f3 100644
--- a/README.md
+++ b/README.md
@@ -168,10 +168,10 @@ Returns a pipeline component that is the composition of two components with a wi
helpers.cons_composed_component(first_component, second_component)
-Returns a components that is the composition of the `first_component` and the `second_component`.
+Returns a component that is the composition of the `first_component` and the `second_component`.
#### Constructing a Parallel Component
helpers.cons_parallel_component(top_component, bottom_component)
-Returns a component that will execute the two provided components in parallel. The input to the constructed component is a pair, whose first value is applied to the `top_component` and the second value is applied to the `bottom_component`. The constructed component`s output shall be a pair, whose first value is the output of the top component, and the second value is the output of the bottom component.
+Returns a component that will execute the two provided components in "parallel". The input to the constructed component is a pair, whose first value is applied to the `top_component` and the second value is applied to the `bottom_component`. The constructed component`s output shall be a pair, whose first value is the output of the top component, and the second value is the output of the bottom component.