summaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
author B. Watson2022-03-14 08:58:26 +0100
committer B. Watson2022-03-14 08:58:26 +0100
commitb2832fab02c1c06bf172c80eaefd72c97562f27b (patch)
tree3b2877e0b8dbeddb054cfb6a3b57327d60c678ef /perl
parente8c2e1cd66b9d99533aff312d33f79139cf5057f (diff)
downloadslackbuilds-b2832fab02c1c06bf172c80eaefd72c97562f27b.tar.gz
perl/perl-IO-All: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'perl')
-rw-r--r--perl/perl-IO-All/README35
1 files changed, 19 insertions, 16 deletions
diff --git a/perl/perl-IO-All/README b/perl/perl-IO-All/README
index 32c21d5b4b..484d1080b1 100644
--- a/perl/perl-IO-All/README
+++ b/perl/perl-IO-All/README
@@ -1,19 +1,22 @@
-IO::All combines all of the best Perl IO modules into a single nifty object
-oriented interface to greatly simplify your everyday Perl IO idioms. It exports
-a single function called io, which returns a new IO::All object. And that
-object can do it all!
+IO::All combines all of the best Perl IO modules into a single nifty
+object oriented interface to greatly simplify your everyday Perl IO
+idioms. It exports a single function called io, which returns a new
+IO::All object. And that object can do it all!
-The IO::All object is a proxy for IO::File, IO::Dir, IO::Socket, Tie::File,
-File::Spec, File::Path, File::MimeInfo and File::ReadBackwards; as well as all
-the DBM and MLDBM modules. You can use most of the methods found in these
-classes and in IO::Handle (which they inherit from). IO::All adds dozens of
-other helpful idiomatic methods including file stat and manipulation functions.
+The IO::All object is a proxy for IO::File, IO::Dir,
+IO::Socket, Tie::File, File::Spec, File::Path, File::MimeInfo and
+File::ReadBackwards; as well as all the DBM and MLDBM modules. You
+can use most of the methods found in these classes and in IO::Handle
+(which they inherit from). IO::All adds dozens of other helpful
+idiomatic methods including file stat and manipulation functions.
-IO::All is pluggable, and modules like IO::All::LWP and IO::All::Mailto add
-even more functionality. Optionally, every IO::All object can be tied to
-itself. This means that you can use most perl IO builtins on it: readline,
-<>, getc, print, printf, syswrite, sysread, close.
+IO::All is pluggable, and modules like IO::All::LWP and
+IO::All::Mailto add even more functionality. Optionally, every IO::All
+object can be tied to itself. This means that you can use most perl IO
+builtins on it: readline, <>, getc, print, printf, syswrite, sysread,
+close.
-The distinguishing magic of IO::All is that it will automatically open (and
-close) files, directories, sockets and other IO things for you. You never need
-to specify the mode (<, >>, etc), since it is determined by the usage context.
+The distinguishing magic of IO::All is that it will automatically
+open (and close) files, directories, sockets and other IO things for
+you. You never need to specify the mode (<, >>, etc), since it is
+determined by the usage context.