summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index b75c5c340..a3ec2aafe 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -336,7 +336,7 @@ sub diff_arrays {
$old[$old_pos] = undef;
}
}
- # Ignore cancelled items as well as empty strings.
+ # Ignore canceled items as well as empty strings.
my @removed = grep { defined $_ && $_ ne '' } @old;
return (\@removed, \@added);
}