Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for #679 (^^ and the end of the string)
  • Loading branch information
AlexDaniel committed Jul 22, 2016
1 parent 1b39176 commit a973e7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/Language/regexes.pod6
Expand Up @@ -484,7 +484,8 @@ Keep in mind, these anchors match end of B<string>, not line:
=head2 X«C<^^>, Start of Line and C<$$>, End of Line|regex,^^;regex,$$»
The C<^^> assertion matches at the start of a logical line. That is, either
at the start of the string, or after a newline character.
at the start of the string, or after a newline character. It does not match
at the end of the string, even if it ends with a newline character.
C<$$> matches only at the end of a logical line, that is, before a newline
character, or at the end of the string when the last character is not a
Expand Down

0 comments on commit a973e7b

Please sign in to comment.