summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-08-24 23:56:18 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-08-24 23:56:18 +0000
commit84dc3c4daae48410e767ac41da148ac5c6c45446 (patch)
tree22b3c90c3712939c2c7a165b60ea3f0881a1af54 /ext
parent6f84cdf987838c544bcd95f51ff8d4f3ef90f529 (diff)
downloadperl-84dc3c4daae48410e767ac41da148ac5c6c45446.tar.gz
Clean up docmentation installation errors.
Diffstat (limited to 'ext')
-rw-r--r--ext/IO/IO.pm23
-rw-r--r--ext/IO/lib/IO/Seekable.pm6
-rw-r--r--ext/IO/lib/IO/Select.pm2
3 files changed, 30 insertions, 1 deletions
diff --git a/ext/IO/IO.pm b/ext/IO/IO.pm
index 645837bbf8..cb6d5d89f0 100644
--- a/ext/IO/IO.pm
+++ b/ext/IO/IO.pm
@@ -10,3 +10,26 @@ use IO::Socket;
1;
+=head1 NAME
+
+IO - load various IO modules
+
+=head1 SYNOPSIS
+
+ use IO;
+
+=head1 DESCRIPTION
+
+C<IO> provides a simple mechanism to load all of the IO modules at one go.
+Currently this includes:
+
+ IO::Handle
+ IO::Seekable
+ IO::File
+ IO::Pipe
+ IO::Socket
+
+For more information on any of these modules, please see its respective
+documentation.
+
+=cut
diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm
index bfa0b2aae3..045e4d5d19 100644
--- a/ext/IO/lib/IO/Seekable.pm
+++ b/ext/IO/lib/IO/Seekable.pm
@@ -6,6 +6,12 @@ package IO::Seekable;
IO::Seekable - supply seek based methods for I/O objects
+=head1 SYNOPSIS
+
+ use IO::Seekable;
+ package IO::Something;
+ @ISA = qw(IO::Seekable);
+
=head1 DESCRIPTION
C<IO::Seekable> does not have a constuctor of its own as is intended to
diff --git a/ext/IO/lib/IO/Select.pm b/ext/IO/lib/IO/Select.pm
index ed8c2bb983..113b2b4e5c 100644
--- a/ext/IO/lib/IO/Select.pm
+++ b/ext/IO/lib/IO/Select.pm
@@ -6,7 +6,7 @@ package IO::Select;
IO::Select - OO interface to the system select call
-=head1 SYNOPSYS
+=head1 SYNOPSIS
use IO::Select;