Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo in test description
  • Loading branch information
pmurias committed Apr 3, 2015
1 parent 0df1882 commit fb42527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/nqp/62-subst.t
Expand Up @@ -5,7 +5,7 @@ plan(7);
my $str := 'hello';

ok(subst($str, /h/, 'f') eq 'fello', 'We can use subst');
ok($str eq 'hello', '.. withouth side effect');
ok($str eq 'hello', '.. without side effect');

ok(subst($str, /l/, 'r', :global) eq 'herro', 'We can use subst to replace all matches');

Expand Down

0 comments on commit fb42527

Please sign in to comment.