summaryrefslogtreecommitdiff
path: root/lib/Getopt
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2014-09-07 19:26:53 -0400
committerJames E Keenan <jkeenan@cpan.org>2014-09-07 19:34:00 -0400
commit624c6f90349a08e2f333e22f977f52eb37cc6419 (patch)
tree22f857b3921a3659ec5a546ef8fbf0cae375e6f9 /lib/Getopt
parentef5a9509b8fe8cc38b62be6d05df6b7cbdfab49a (diff)
downloadperl-624c6f90349a08e2f333e22f977f52eb37cc6419.tar.gz
Correct typo reported by Hauke D. (RT #41359)
Increment $VERSION for Getopt::Std.
Diffstat (limited to 'lib/Getopt')
-rw-r--r--lib/Getopt/Std.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Getopt/Std.pm b/lib/Getopt/Std.pm
index ecb7ebbf97..b7f8132b38 100644
--- a/lib/Getopt/Std.pm
+++ b/lib/Getopt/Std.pm
@@ -36,8 +36,8 @@ The C<getopts()> function returns true unless an invalid option was found.
The C<getopt()> function is similar, but its argument is a string containing
all switches that take an argument. If no argument is provided for a switch,
say, C<y>, the corresponding C<$opt_y> will be set to an undefined value.
-Unspecified switches are silently accepted. B<Use of C<getopts()> is not
-recommended.>
+Unspecified switches are silently accepted. Use of C<getopt()> is not
+recommended.
Note that, if your code is running under the recommended C<use strict
vars> pragma, you will need to declare these package variables
@@ -81,7 +81,7 @@ and version_mess() with the switches string as an argument.
@ISA = qw(Exporter);
@EXPORT = qw(getopt getopts);
-$VERSION = '1.10';
+$VERSION = '1.11';
# uncomment the next line to disable 1.03-backward compatibility paranoia
# $STANDARD_HELP_VERSION = 1;