Skip to content

Commit 8c9e45d

Browse files
committed
brackets → braces, reflow refs #2114
1 parent a7f7c39 commit 8c9e45d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Language/glossary.pod6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ multi foo (1/3) { say "It's one third!" }
101101
# Right, a Rat literal:
102102
multi foo (<1/3>) { say "It's one third!" }
103103
104-
If you I<do> want an allomorph and not a literal L<Numeric>,
105-
then include whitespace around angle brackets:
104+
If you I<do> want an allomorph and not a literal L<Numeric>, then include
105+
whitespace around angle brackets:
106106
107107
say <42/1>.^name; # OUTPUT: «Rat␤»
108108
say <42+0i>.^name; # OUTPUT: «Complex␤»
@@ -1072,7 +1072,7 @@ The value of variables is interpolated into strings by simply inserting that var
10721072
my $polation="polation";
10731073
say "inter$polation";# OUTPUT: «interpolation␤»
10741074
1075-
This might need curly brackets in case it precedes some alphanumeric characters
1075+
This might need curly braces in case it precedes some alphanumeric characters
10761076
10771077
my $inter="inter";
10781078
say "{$inter}polation"; # OUTPUT: «interpolation␤»

0 commit comments

Comments
 (0)