diff options
author | Brian Gottreu <gottreu@gmail.com> | 2013-06-16 13:37:33 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-22 22:11:44 -0700 |
commit | 555bd962bf06d749086724e280b3588586df7805 (patch) | |
tree | 50a45eca58f93ccc0fe9ddb4e9167d302f6b6415 /lib/Getopt | |
parent | 6ca3c6c679258bbb20a4445b34608d144ac7090d (diff) | |
download | perl-555bd962bf06d749086724e280b3588586df7805.tar.gz |
Fixed verbatim lines in POD over 79 characters
Diffstat (limited to 'lib/Getopt')
-rw-r--r-- | lib/Getopt/Std.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Getopt/Std.pm b/lib/Getopt/Std.pm index 01968b39e8..2f0f659283 100644 --- a/lib/Getopt/Std.pm +++ b/lib/Getopt/Std.pm @@ -13,7 +13,8 @@ getopt, getopts - Process single-character switches with switch clustering getopts('oif:'); # -o & -i are boolean flags, -f takes an argument # Sets $opt_* as a side effect. getopts('oif:', \%opts); # options as above. Values in %opts - getopt('oDI'); # -o, -D & -I take arg. Sets $opt_* as a side effect. + getopt('oDI'); # -o, -D & -I take arg. + # Sets $opt_* as a side effect. getopt('oDI', \%opts); # -o, -D & -I take arg. Values in %opts =head1 DESCRIPTION |