Skip to content

Commit cb97d80

Browse files
committed
Correct case of error message
.. so that it's the same in both universal.c and pod/perldiag.pod. This enables us to preserve status of universal.c in t/porting/diag.t. Per: Tony Cook review.
1 parent d57c861 commit cb97d80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pod/perldiag.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,7 @@ C<require> function does not know what to do with the object.
13401340
See also L<perlfunc/require>.
13411341

13421342
=item Attempt to call undefined %s method with arguments via package
1343-
"%s" (perhaps you forgot to load the package?)
1343+
"%s" (Perhaps you forgot to load the package?)
13441344

13451345
(F) You called the C<import()> or C<unimport()> method of a class that has no
13461346
such method defined in its inheritance graph, and passed an argument to the

t/porting/diag.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ my $specialformats_re = qr/%$format_modifiers"\s*($specialformats)(\s*(?:"|\z))?
251251
my @include_xs_files = (
252252
"builtin.c",
253253
"class.c",
254-
#"universal.c",
254+
"universal.c",
255255
);
256256

257257
if (@ARGV) {

0 commit comments

Comments
 (0)