summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Util.pm
diff options
context:
space:
mode:
authorvladd%bugzilla.org <>2006-06-19 23:49:40 +0200
committervladd%bugzilla.org <>2006-06-19 23:49:40 +0200
commit7b7c02c77af49484842667a9fdbf3f2ef69089fd (patch)
treec37758874284aeeb26fd0f19bfdce7066aee4b84 /Bugzilla/Util.pm
parentbd88c794432976d970125f113a9b80f7c3eafe12 (diff)
downloadbugzilla-7b7c02c77af49484842667a9fdbf3f2ef69089fd.tar.gz
bugzilla-7b7c02c77af49484842667a9fdbf3f2ef69089fd.tar.xz
Spelling in code comments patch: 'explanaion' -> 'explanation', 'bugzilla' -> 'Bugzilla'; patch by Vlad Dascalu <vladd@bugzilla.org>.
Diffstat (limited to 'Bugzilla/Util.pm')
-rw-r--r--Bugzilla/Util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 01a977476..6660fff91 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -114,7 +114,7 @@ sub value_quote {
$var =~ s/>/\&gt;/g;
$var =~ s/\"/\&quot;/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/\&#013;/g;
$var =~ s/\n\r/\&#013;/g;