diff options
author | John Tobey <jtobey@john-edwin-tobey.org> | 1998-11-22 06:25:15 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-11-22 12:12:29 +0000 |
commit | 368c9434e40b3ef162b100271eb4d6a1dd886bbc (patch) | |
tree | 91ad2a4873ad9938669a205ba1a4a6f64aea23c7 /pod/perlfaq4.pod | |
parent | 9d9477b1b5a6ab420403942c0942c613290f7911 (diff) | |
download | perl-368c9434e40b3ef162b100271eb4d6a1dd886bbc.tar.gz |
perlfaq typos
To: perl5-porters@perl.com
Message-ID: <MLIST_m0zhPeF-000FOgC@feynman.localnet>
p4raw-id: //depot/cfgperl@2266
Diffstat (limited to 'pod/perlfaq4.pod')
-rw-r--r-- | pod/perlfaq4.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod index 633f5f109b..aa6b6a56fc 100644 --- a/pod/perlfaq4.pod +++ b/pod/perlfaq4.pod @@ -207,7 +207,7 @@ http://www.perl.com/CPAN/authors/David_Muir_Sharnoff/modules/Time/JulianDay.pm.g =head2 Does Perl have a year 2000 problem? Is Perl Y2K compliant? Short answer: No, Perl does not have a Year 2000 problem. Yes, -Perl is Y2K compliant. The programmers you're hired to use it, +Perl is Y2K compliant. The programmers you've hired to use it, however, probably are not. Long answer: Perl is just as Y2K compliant as your pencil--no more, @@ -378,7 +378,7 @@ There are a number of ways, with varying efficiency: If you want a count of a certain single character (X) within a string, you can use the C<tr///> function like so: - $string = "ThisXlineXhasXsomeXx'sXinXit": + $string = "ThisXlineXhasXsomeXx'sXinXit"; $count = ($string =~ tr/X//); print "There are $count X charcters in the string"; |