Skip to content

Commit 3256bb0

Browse files
committed
Separate angular parens to avoid them being gobbled.
Closes #3763
1 parent fe2ce36 commit 3256bb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/syntax.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,8 +1008,8 @@ on a single list of inputs, resulting in a single value.
10081008
say [+] <1 2 3 4 5>; # OUTPUT: «15␤»
10091009
(((1 + 2) + 3) + 4) + 5 # equivalent expanded version
10101010
1011-
Wrap an infix operator in C<« »> (or the ASCII equivalent C<<< >>>) to create a
1012-
new hyper operator that works pairwise on two lists.
1011+
Wrap an infix operator in C<« »> (or the ASCII equivalent C< << >> >) to
1012+
create a new hyper operator that works pairwise on two lists.
10131013
10141014
say <1 2 3> «+» <4 5 6> # OUTPUT: «(5 7 9)␤»
10151015

0 commit comments

Comments
 (0)