From: vladd%bugzilla.org <> Date: Mon, 19 Jun 2006 21:49:27 +0000 (+0000) Subject: Spelling in code comments patch: 'explanaion' -> 'explanation', 'bugzilla' -> 'Bugzil... X-Git-Tag: bugzilla-2.22.1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff413e8f3fbca2e49f32fe88fda91e6ef8d8b0c0;p=thirdparty%2Fbugzilla.git Spelling in code comments patch: 'explanaion' -> 'explanation', 'bugzilla' -> 'Bugzilla'; patch by Vlad Dascalu . --- diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index c7c5b9078a..e02a642a50 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -115,7 +115,7 @@ sub value_quote { $var =~ s/>/\>/g; $var =~ s/\"/\"/g; # See bug http://bugzilla.mozilla.org/show_bug.cgi?id=4928 for - # explanaion of why bugzilla does this linebreak substitution. + # explanation of why Bugzilla does this linebreak substitution. # This caused form submission problems in mozilla (bug 22983, 32000). $var =~ s/\r\n/\ /g; $var =~ s/\n\r/\ /g;