diff options
author | danfe <danfe@FreeBSD.org> | 2016-11-22 21:06:47 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2016-11-22 21:06:47 +0800 |
commit | f47e679ff68c9b1af35d761561bb89e215475e52 (patch) | |
tree | 49540a6d82f08d1ae3b1235a2bfbea56434e739c /devel/p5-Async-MergePoint | |
parent | 2cd6d432b65cb304028f3a0b0fae5cc9b1a3a39f (diff) | |
download | freebsd-ports-gnome-f47e679ff68c9b1af35d761561bb89e215475e52.tar.gz freebsd-ports-gnome-f47e679ff68c9b1af35d761561bb89e215475e52.tar.zst freebsd-ports-gnome-f47e679ff68c9b1af35d761561bb89e215475e52.zip |
Fix a typo, improve wording, reformat for better readability, use double
space after full stop and single space for WWW: line.
Diffstat (limited to 'devel/p5-Async-MergePoint')
-rw-r--r-- | devel/p5-Async-MergePoint/pkg-descr | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/devel/p5-Async-MergePoint/pkg-descr b/devel/p5-Async-MergePoint/pkg-descr index f89300daacd2..416960ba3168 100644 --- a/devel/p5-Async-MergePoint/pkg-descr +++ b/devel/p5-Async-MergePoint/pkg-descr @@ -1,16 +1,16 @@ Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before -the next step can be taken. In synchonous code, the usual approach is -to do them sequentially. +the next step can be taken. In synchronous code, the usual approach is +to perform them sequentially. An asynchronous or event-based program could do this, but if each step -involves some IO idle time, better overall performance can often be -gained by running the steps in parallel. A Async::MergePoint object -can then be used to wait for all of the steps to complete, before -passing the combined result of each step on to the next stage. +involves some I/O idle time, better overall performance can often be +gained by running the steps in parallel. Async::MergePoint object can +then be used to wait for all of the steps to complete, before passing +the combined result of each step on to the next stage. This module was originally part of the IO::Async distribution, but was -removed under the inspiration of Pedro Melo's Async::Hooks -distribution, because it doesn't itself contain anything IO-specific. +removed under the inspiration of Pedro Melo's Async::Hooks distribution, +because it does not itself contain anything I/O-specific. -WWW: http://search.cpan.org/dist/Async-MergePoint/ +WWW: http://search.cpan.org/dist/Async-MergePoint/ |