Skip to content

Commit 598e0ce

Browse files
committed
Fix index syntax of pointy block
Previously, the search term and category were reversed, which created resulted in a buggy results displayed to the user on search. Use the correct order.
1 parent eb7d914 commit 598e0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/functions.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Or even
100100
say { $^a ** 2 + $^b ** 2 }(3, 4) # OUTPUT: «25␤»
101101
102102
X<|pointy blocks>
103-
=head2 X«Blocks and lambdas|syntax,->»
103+
=head2 X«Blocks and lambdas|->,syntax»
104104
105105
Whenever you see something like C«{ $_ + 42 }», C«-> $a, $b { $a ** $b }», or
106106
C«{ $^text.indent($:spaces) }», that's L<Block|/type/Block> syntax; the C«->» is

0 commit comments

Comments
 (0)