Skip to content

Commit

Permalink
Fixed code in Synopsis
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtoobii committed Jun 24, 2021
1 parent c5e8602 commit c4b2505
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.1.0 2021-23-23 Tobias Bossert (tobib at cpan.org)
0.1.1 2021-06-24 Tobias Bossert (tobib at cpan.org)

- Fixed code in Synopsis

0.1.0 2021-06-23 Tobias Bossert (tobib at cpan.org)

- initial release
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
4 changes: 2 additions & 2 deletions lib/Devel/Deanonymize.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Devel::Deanonymize - A small tool to make anonymous sub visible
When collecting Coverage statistics with L<Devel::Cover> a construct like below appear to be invisible and is simply ignored
by the statistic:
my $sub = sub handle{
my $sub = sub {
print "hello";
}
Expand Down Expand Up @@ -65,7 +65,7 @@ package Devel::Deanonymize;
use strict;
use warnings FATAL => 'all';

our $VERSION = "0.1.0";
our $VERSION = "0.1.1";

my $include_pattern;

Expand Down

0 comments on commit c4b2505

Please sign in to comment.