Skip to content

Commit

Permalink
Fix Str.reverse that was added to setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Feb 22, 2009
1 parent 1533598 commit 2a9382c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setting/Str.pm
@@ -1,6 +1,6 @@
class Str is also {
our Str multi method reverse ($str: ) {
return $str.split('').reverse.join;
our Str multi method reverse ($str: ) is export {
return $str.split('').reverse.join('');
}
}

Expand Down

0 comments on commit 2a9382c

Please sign in to comment.