From owner-svn-ports-head@freebsd.org Tue Nov 22 13:06:48 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2BFAC4D5F9; Tue, 22 Nov 2016 13:06:48 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7AACE638; Tue, 22 Nov 2016 13:06:48 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAMD6lsl044451; Tue, 22 Nov 2016 13:06:47 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAMD6lBr044450; Tue, 22 Nov 2016 13:06:47 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201611221306.uAMD6lBr044450@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 22 Nov 2016 13:06:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426822 - head/devel/p5-Async-MergePoint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 13:06:48 -0000 Author: danfe Date: Tue Nov 22 13:06:47 2016 New Revision: 426822 URL: https://svnweb.freebsd.org/changeset/ports/426822 Log: Fix a typo, improve wording, reformat for better readability, use double space after full stop and single space for WWW: line. Modified: head/devel/p5-Async-MergePoint/pkg-descr Modified: head/devel/p5-Async-MergePoint/pkg-descr ============================================================================== --- head/devel/p5-Async-MergePoint/pkg-descr Tue Nov 22 12:59:03 2016 (r426821) +++ head/devel/p5-Async-MergePoint/pkg-descr Tue Nov 22 13:06:47 2016 (r426822) @@ -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/