File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4153,8 +4153,8 @@ which is forbidden. See L<perlvar/%{^HOOK}> and L<perlfunc/require EXPR>.
41534153
41544154=item Missing required named parameter '%s' to subroutine '%s'
41554155
4156- (F) A subroutine using a signature that declares a non-optional named
4157- parameter was invoked , but the caller did not provide a value associated
4156+ (F) A subroutine was invoked that uses a signature that declares a
4157+ non-optional named parameter , but the caller did not provide a value associated
41584158with that name. The caller of the subroutine is presumably at fault.
41594159
41604160The message attempts to include the name of the called subroutine. If
@@ -7520,8 +7520,8 @@ perl does not recognise the name of the requested attribute.
75207520
75217521=item Unrecognized named parameter '%s' to subroutine '%s'
75227522
7523- (F) A subroutine using a signature that declares named parameters but has no
7524- slurpy parameter was invoked , and the caller provided a name that did not
7523+ (F) A subroutine was invoked that uses a signature that declares named parameters but has no
7524+ slurpy parameter, and the caller provided a name that did not
75257525match any declared named parameter. The caller of the subroutine is
75267526presumably at fault.
75277527
Original file line number Diff line number Diff line change @@ -445,7 +445,7 @@ If there are multiple optional positional parameters and not enough
445445arguments are supplied to fill them all, they will be filled from left
446446to right.
447447
448- Since Perl 5.43.3 , a signature may also declare named parameters. Like
448+ Since Perl 5.43.5 , a signature may also declare named parameters. Like
449449positional parameters, these are lexical variables which will contain values
450450passed by the caller when the subroutine is invoked. Whereas positional
451451parameters take their values from the corresponding position in the list
You can’t perform that action at this time.
0 commit comments