We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da35fc7 commit f37df01Copy full SHA for f37df01
doc/Type/X/Syntax/Comment/Embedded.pod6
@@ -7,7 +7,7 @@
7
class X::Syntax::Comment::Embedded does X::Syntax { }
8
9
Syntax error thrown when C<#`> is encountered and it is not followed by
10
-an opening curly bracket.
+an opening curly brace.
11
12
For example
13
xt/braces.t
@@ -22,7 +22,8 @@ sub test-it(Str $output, Str $file) {
22
23
my $msg;
24
25
- my $line = $output.subst(/\s+/, ' ', :g); # canonicalize whitespace
+ my $line = $output.subst(/\s+/, ' ', :g) # canonicalize whitespace
26
+ .subst('Opening bracket is required for', ''); # rakudo/rakudo#2672
27
28
if $line ~~ /:i <!after curly> ' ' 'braces' >> / {
29
$msg ~= "Found 'braces' without 'curly'. ";
0 commit comments