1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: POD spelling
paramters → parameters
Author: Damyan Ivanov <dmn@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=143497
Bug: https://rt.cpan.org/Ticket/Display.html?id=143497
--- a/lib/Class/ReturnValue.pm
+++ b/lib/Class/ReturnValue.pm
@@ -36,7 +36,7 @@ or a list (what are the return values)
print "the routine succeeded with one parameter";
}
if (demo()) {
- print "The routine succeeded with 0 paramters. shouldn't happen";
+ print "The routine succeeded with 0 parameters. shouldn't happen";
} else {
print "The routine failed with 0 parameters (as it should).";
}
@@ -44,7 +44,7 @@ or a list (what are the return values)
my $return = demo();
if ($return) {
- print "The routine succeeded with 0 paramters. shouldn't happen";
+ print "The routine succeeded with 0 parameters. shouldn't happen";
} else {
print "The routine failed with 0 parameters (as it should). ".
"Stack trace:\n".
|