Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
s/hidden_from_backtrace/hidden-from-backtrace/
  • Loading branch information
moritz committed Mar 21, 2015
1 parent b327e9e commit fb13502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DBDish.pm6
Expand Up @@ -35,7 +35,7 @@ role DBDish::ErrorHandling {
has Bool $.PrintError is rw = False;
has Bool $.RaiseError is rw = True;
has $.errstr;
method !set_errstr($err) is hidden_from_backtrace {
method !set_errstr($err) is hidden-from-backtrace {
$!errstr = $err;
note $!errstr if self.PrintError;
die $!errstr if self.RaiseError;
Expand Down

0 comments on commit fb13502

Please sign in to comment.