summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-07-13 11:46:14 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-07-13 11:46:14 +0000
commitc990a0aa946ece05f609eb30b27514cac41fbbe3 (patch)
tree930ce67b7f657329591e0e24b1a60888bae6a660 /ext
parent159f47d9c50d8b3750644c8f166145335385b847 (diff)
downloadperl-c990a0aa946ece05f609eb30b27514cac41fbbe3.tar.gz
Minor doc changes for PerlIO::via.
p4raw-id: //depot/perl@17517
Diffstat (limited to 'ext')
-rw-r--r--ext/PerlIO/via/via.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/PerlIO/via/via.pm b/ext/PerlIO/via/via.pm
index cca09d8f50..39a5fab860 100644
--- a/ext/PerlIO/via/via.pm
+++ b/ext/PerlIO/via/via.pm
@@ -26,7 +26,7 @@ to Perl.
One example module, L<PerlIO::via::QuotedPrint>, is included with Perl
5.8.0, and more example modules are available from CPAN, such as
L<PerlIO::via::StripHTML> and L<PerlIO::via::Base64>. The
-PerlIO::via::StripHTML for instance, allows you to say:
+PerlIO::via::StripHTML module for instance, allows you to say:
use PerlIO::via::StripHTML;
open( my $fh, "<:via(StripHTML)", "index.html" );
@@ -49,8 +49,8 @@ PerlIO::via:: namespace, so that they can easily be located on CPAN and use
the default namespace feature of the PerlIO::via module itself.
Please note that this is an area of recent development in Perl and that the
-interface described here is therefor still subject to change (and hopefully
-better documentation and more examples).
+interface described here is therefore still subject to change (and hopefully
+will have better documentation and more examples).
In the method descriptions below I<$fh> will be
a reference to a glob which can be treated as a perl file handle.
@@ -178,7 +178,7 @@ a PerlIO layer can look, as simple example is included here.
=head2 Example - a Hexadecimal Handle
-Given the following module, PerlIO::via::Hex.pm:
+Given the following module, PerlIO::via::Hex :
package PerlIO::via::Hex;