Subject: | Typo in append_comment: "indent" should be "ident" |
Damian,
I think I found a typo in Config::Std 0.02 while browsing source on CPAN.org, 'indent' should be 'ident' ?
sub append_comment {
my ($self, $new_text) = @_;
- $text_of{indent $self} .= $new_text; # OLD
+ $text_of{ident $self} .= $new_text; # NEW
}
Have to admit I've made the same typo when using Class::Std !
Torsten