diff options
author | vladd%bugzilla.org <> | 2006-06-19 23:49:40 +0200 |
---|---|---|
committer | vladd%bugzilla.org <> | 2006-06-19 23:49:40 +0200 |
commit | 7b7c02c77af49484842667a9fdbf3f2ef69089fd (patch) | |
tree | c37758874284aeeb26fd0f19bfdce7066aee4b84 /Bugzilla | |
parent | bd88c794432976d970125f113a9b80f7c3eafe12 (diff) | |
download | bugzilla-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')
-rw-r--r-- | Bugzilla/Util.pm | 2 |
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/>/\>/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; |