FIX: fixed typos
This commit is contained in:
parent
54cee92dd8
commit
552e304c0e
@ -267,7 +267,7 @@ The estimated time for solving this issue in B<Minutes>
|
||||
Default value is B<0>, meaning no estimate set.
|
||||
|
||||
=cut
|
||||
has 'estimated_time' (is => 'rw', isa => 'Num', default => 0, trigger => sub {
|
||||
has 'estimated_time' => (is => 'rw', isa => 'Num', default => 0, trigger => sub {
|
||||
my ($self, $new, $old) = @_;
|
||||
|
||||
die("unknown value (" . $new . ")") unless $new > 0;
|
||||
@ -280,7 +280,7 @@ The current time in B<Minutes> already spent on this issue
|
||||
The default value is B<0>.
|
||||
|
||||
=cut
|
||||
has 'working_time' => (is => 'rw', isa=>'Num', default => 0, rigger => sub {
|
||||
has 'working_time' => (is => 'rw', isa=>'Num', default => 0, trigger => sub {
|
||||
my ($self, $new, $old) = @_;
|
||||
|
||||
die("unknown value (" . $new . ")") unless $new > 0;
|
||||
|
Loading…
Reference in New Issue
Block a user