From: Vincent Pit <vince@profvince.com>
Date: Sun, 27 Dec 2009 21:02:37 +0000 (+0100)
Subject: Doc nits
X-Git-Tag: v0.03~3
X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=c204082b7c542b76a735ece2d8a5dd46a4d41889;p=perl%2Fmodules%2FThread-Cleanup.git

Doc nits
---

diff --git a/lib/Thread/Cleanup.pm b/lib/Thread/Cleanup.pm
index 5ee7ea6..b2773f6 100644
--- a/lib/Thread/Cleanup.pm
+++ b/lib/Thread/Cleanup.pm
@@ -44,18 +44,18 @@ It acts globally on all the threads that may spawn anywhere in your program, wit
 
 =head2 C<register BLOCK>
 
-Specify that the C<BLOCK> will have to be called (in void context, without arguments) every time a thread finishes is job.
+Specify that the C<BLOCK> will have to be called (in void context, without arguments) every time a thread finishes its job.
 More precisely,
 
 =over 4
 
 =item *
 
-it will always be called before the join for joined threads ;
+it will always be called before the joining for joined threads ;
 
 =item *
 
-it will be called for detached threads only if they terminate before the main thread, and the hook will then fire at C<END> time ;
+it will be called for detached threads if and only if they terminate before the main thread, and the hook will then fire at C<END> time ;
 
 =item *