From 3bd2f5133ffb47cde0d59a4b7160888dd32ac7e0 Mon Sep 17 00:00:00 2001 From: "vladd%bugzilla.org" Date: Mon, 19 Jun 2006 14:49:40 +0000 Subject: [PATCH] Spelling in code comments patch: 'explanaion' -> 'explanation', 'bugzilla' -> 'Bugzilla'; patch by Vlad Dascalu . git-svn-id: svn://10.0.0.236/trunk@200292 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Bugzilla/Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/Bugzilla/Util.pm b/mozilla/webtools/bugzilla/Bugzilla/Util.pm index 01a977476ad..6660fff91a1 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Util.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Util.pm @@ -114,7 +114,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;