FIX: fixed typo in Issue.pm

This commit is contained in:
Dominik Meyer 2019-03-23 13:54:07 +01:00
parent 63f79884eb
commit b61b7dedf9
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ has 'type' => (is => 'rw', isa => 'Str', default => 'bug', trigger => sub {
die("unknown value in type (" . $new . ")") unless lc($new) eq "bug" || lc($new) eq "security-bug" ||
lc($new) eq "improvement" || lc($new) eq "feature" ||
lc($new) eq "task" || lc($$new) eq "epic";
lc($new) eq "task" || lc($new) eq "epic";
});
=attr status