From: Frédéric Buclin Date: Sat, 19 Nov 2011 00:11:00 +0000 (+0100) Subject: cancelled -> canceled X-Git-Tag: bugzilla-4.2rc1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f08fde0c271e6393a10aa0011b49613d26a31d33;p=thirdparty%2Fbugzilla.git cancelled -> canceled https://bugzilla.mozilla.org/show_bug.cgi?id=703788 --- diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index b3f8a1ce02..4c268552b4 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -339,7 +339,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); }