Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Any-str] format should be hexadecimal, not float
  • Loading branch information
Carl Masak committed Mar 13, 2010
1 parent f04eb83 commit a078e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Any-str.pm
Expand Up @@ -251,7 +251,7 @@ augment class Any {
}

multi method Str() {
sprintf '%s<0x%f>', self.WHAT, self.WHERE;
sprintf '%s<0x%x>', self.WHAT, self.WHERE;
}
}

Expand Down

0 comments on commit a078e49

Please sign in to comment.