Skip to content

Commit 9dc0e54

Browse files
committed
fix typo: slice parameter should be **@
1 parent d0de245 commit 9dc0e54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Perl6/Perl5/Differences.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ You should override these to provide meaningful semantics.
384384
multi method postcircumfix:<{ }>(Int $index) {
385385
# code for accessing single hash elements here
386386
}
387-
multi method postcircumfix:<{ }>(*@@slice) {
387+
multi method postcircumfix:<{ }>(**@slice) {
388388
# code for accessing hash slices here
389389
}
390390
...

0 commit comments

Comments
 (0)