Skip to content

Commit

Permalink
[sigspace.t] don't use [abc] to mean 'abc' since it looks like old-sc…
Browse files Browse the repository at this point in the history
…hool character class

git-svn-id: http://svn.pugscode.org/pugs@30569 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
lwall committed May 6, 2010
1 parent e98ede9 commit 69be53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S05-modifier/sigspace.t
Expand Up @@ -22,7 +22,7 @@ ok( "abc def" ~~ m:sigspace/abc <.ws> def/, 'Word explicit space match');

ok 'abc def' ~~ m/:s abc def/, 'inline :s (+)';
ok 'zabc def' !~~ m/:s abc def/, 'inline :s implies <.ws> immediately (-)';
ok 'zabc def' ~~ m/:s[abc] def/, 'inline :s implies <.ws> immediately (+)';
ok 'zabc def' ~~ m/:s'abc' def/, 'inline :s implies <.ws> immediately (+)';


# L<S05/Modifiers/The :s modifier is considered sufficiently important>
Expand Down

0 comments on commit 69be53a

Please sign in to comment.