cvs commit: perlfaq perlfaq6.pod
[email protected] (brian d foy)
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 03/01/03 12:05:29
Modified: . perlfaq6.pod
Log:
* I put a regular expression into $/ but it didn't work. What's wrong?
+ $/ has always been a string, so "as of Perl 5.8.0" is misleading
since it makes it read like the behaviour of $/ changed at that
version. I changed it to "up to".
Revision Changes Path
1.20 +2 -2 perlfaq/perlfaq6.pod
Index: perlfaq6.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq6.pod,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -w -r1.19 -r1.20
--- perlfaq6.pod 6 Dec 2002 07:40:11 -0000 1.19
+++ perlfaq6.pod 3 Jan 2003 20:05:28 -0000 1.20
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq6 - Regular Expressions ($Revision: 1.19 $, $Date: 2002/12/06 07:40:11 $)
+perlfaq6 - Regular Expressions ($Revision: 1.20 $, $Date: 2003/01/03 20:05:28 $)
=head1 DESCRIPTION
@@ -147,7 +147,7 @@
=head2 I put a regular expression into $/ but it didn't work. What's wrong?
-As of Perl 5.8.0, $/ has to be a string. This may change in 5.10,
+Up to Perl 5.8.0, $/ has to be a string. This may change in 5.10,
but don't get your hopes up. Until then, you can use these examples
if you really need to do this.