summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-09-18 02:35:29 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2011-09-18 02:35:29 +0200
commitf323db91093f6620fc7cfc8fb65b031ced40b028 (patch)
treeccedbaa913fe61d48cf332044b22dfa0d1138b79 /Bugzilla
parent7dcb30cb4e5b26a052aaca21f3bcf4657f8c3126 (diff)
downloadbugzilla-f323db91093f6620fc7cfc8fb65b031ced40b028.tar.gz
bugzilla-f323db91093f6620fc7cfc8fb65b031ced40b028.tar.xz
Fix typo in comments
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/WebService/Bug.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index da2393033..fb2b7b65d 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -204,7 +204,7 @@ sub _legal_field_values {
name => $self->type('string', $status->name),
is_open => $self->type('boolean', $status->is_open),
sort_key => $self->type('int', $status->sortkey),
- sortkey => $self->type('int', $status->sortkey), # depricated
+ sortkey => $self->type('int', $status->sortkey), # deprecated
can_change_to => \@can_change_to,
visibility_values => [],
});
@@ -218,7 +218,7 @@ sub _legal_field_values {
push(@result, {
name => $self->type('string', $value->name),
sort_key => $self->type('int' , $value->sortkey),
- sortkey => $self->type('int' , $value->sortkey), # depricated
+ sortkey => $self->type('int' , $value->sortkey), # deprecated
visibility_values => [
defined $vis_val ? $self->type('string', $vis_val->name)
: ()