Skip to content

Commit 14724ea

Browse files
committed
fix typo
1 parent 7e71c5a commit 14724ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/signatures.rakudoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ Example with a positional parameter:
10101010
=begin code
10111011
my constant PositionalAt = Positional.new;
10121012

1013-
sub a (@list = PositionalAt) { say @list === PositionalAt } # here, one can also use =:=, the container indentity operator
1013+
sub a (@list = PositionalAt) { say @list === PositionalAt } # here, one can also use =:=, the container identity operator
10141014
a; # OUTPUT: «True␤»
10151015
a [1, 2, 3]; # OUTPUT: «False␤»
10161016
=end code

0 commit comments

Comments
 (0)