Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix table layout in regexes/regex interpolation section
  • Loading branch information
threadless-screw committed Aug 13, 2019
1 parent b1df019 commit d0d57cc
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions doc/Language/regexes.pod6
Expand Up @@ -1645,11 +1645,14 @@ pattern, which may be summarized as follows:
Syntax | Description
===============+===========================================================
C«$variable» | Interpolates stringified contents of variable literally.
C«$(code)» | Runs Perl 6 code inside the regex, and interpolates the
$variable | Interpolates stringified contents of variable literally.
---------------------------------------------------------------------------
$(code) | Runs Perl 6 code inside the regex, and interpolates the
| stringified return value literally.
C«<$variable>» | Interpolates stringified contents of variable as a regex.
C«<{code}>» | Runs Perl 6 code inside the regex, and interpolates the
---------------------------------------------------------------------------
<$variable> | Interpolates stringified contents of variable as a regex.
---------------------------------------------------------------------------
<{code}> | Runs Perl 6 code inside the regex, and interpolates the
| stringified return value as a regex.
=end table
Expand Down

0 comments on commit d0d57cc

Please sign in to comment.