cvs commit: perlfaq perlfaq2.pod perlfaq3.pod perlfaq4.pod perlfaq6.pod
[email protected] (Robert Spier) 6 Aug 2005 06:55:54 -0000
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 05/08/05 23:55:54 Modified: . perlfaq2.pod perlfaq3.pod perlfaq4.pod perlfaq6.pod Log: Change 25253 by rgs@bloom on 2005/08/01 08:13:10 Subject: [PATCH] POD typos From: "Piotr Fusik" <[email protected]> Date: Sat, 30 Jul 2005 21:54:19 +0200 Message-ID: <00ef01c59542$3198ba00$26d34dd5@piec> Revision Changes Path 1.33 +2 -2 perlfaq/perlfaq2.pod Index: perlfaq2.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq2.pod,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- perlfaq2.pod 22 Apr 2005 19:04:48 -0000 1.32 +++ perlfaq2.pod 6 Aug 2005 06:55:53 -0000 1.33 @@ -538,7 +538,7 @@ joining, starting, or requesting services for a Perl user group. http://www.cpan.org/ is the Comprehensive Perl Archive Network, -a replicated worlwide repository of Perl software, see +a replicated worldwide repository of Perl software, see the I<What is CPAN?> question earlier in this document. =head1 AUTHOR AND COPYRIGHT 1.50 +2 -2 perlfaq/perlfaq3.pod Index: perlfaq3.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq3.pod,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- perlfaq3.pod 4 Jun 2005 04:12:40 -0000 1.49 +++ perlfaq3.pod 6 Aug 2005 06:55:53 -0000 1.50 @@ -407,7 +407,7 @@ =item Affrus -is a full Perl development enivornment with full debugger support +is a full Perl development environment with full debugger support ( http://www.latenightsw.com ). =item Alpha 1.66 +2 -2 perlfaq/perlfaq4.pod Index: perlfaq4.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq4.pod,v retrieving revision 1.65 retrieving revision 1.66 diff -u -r1.65 -r1.66 --- perlfaq4.pod 4 Jun 2005 04:12:40 -0000 1.65 +++ perlfaq4.pod 6 Aug 2005 06:55:54 -0000 1.66 @@ -593,7 +593,7 @@ This is documented in L<perlref>, and although it's not the easiest thing to read, it does work. In each of these examples, we call the function inside the braces of used to dereference a reference. If we -have a more than one return value, we can contruct and dereference an +have a more than one return value, we can construct and dereference an anonymous array. In this case, we call the function in list context. print "The time values are @{ [localtime] }.\n"; 1.34 +2 -2 perlfaq/perlfaq6.pod Index: perlfaq6.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq6.pod,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- perlfaq6.pod 4 Jun 2005 04:12:40 -0000 1.33 +++ perlfaq6.pod 6 Aug 2005 06:55:54 -0000 1.34 @@ -603,7 +603,7 @@ "Perler" # no word char before P, but one after l You don't have to use \b to match words though. You can look for -non-word characters surrrounded by word characters. These strings +non-word characters surrounded by word characters. These strings match the pattern /\b'\b/. "don't" # the ' char is surrounded by "n" and "t"