Skip to content

Commit d0d57cc

Browse files
Fix table layout in regexes/regex interpolation section
1 parent b1df019 commit d0d57cc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

doc/Language/regexes.pod6

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1645,11 +1645,14 @@ pattern, which may be summarized as follows:
16451645
16461646
Syntax | Description
16471647
===============+===========================================================
1648-
C«$variable» | Interpolates stringified contents of variable literally.
1649-
C«$(code)» | Runs Perl 6 code inside the regex, and interpolates the
1648+
$variable | Interpolates stringified contents of variable literally.
1649+
---------------------------------------------------------------------------
1650+
$(code) | Runs Perl 6 code inside the regex, and interpolates the
16501651
| stringified return value literally.
1651-
C«<$variable>» | Interpolates stringified contents of variable as a regex.
1652-
C«<{code}>» | Runs Perl 6 code inside the regex, and interpolates the
1652+
---------------------------------------------------------------------------
1653+
<$variable> | Interpolates stringified contents of variable as a regex.
1654+
---------------------------------------------------------------------------
1655+
<{code}> | Runs Perl 6 code inside the regex, and interpolates the
16531656
| stringified return value as a regex.
16541657
16551658
=end table

0 commit comments

Comments
 (0)