summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-07-06 21:06:43 +0200
committerlpsolit%gmail.com <>2006-07-06 21:06:43 +0200
commitd0724475098f99c584a7b013f5c5076b6e2b4bba (patch)
treed28a961b2bafa81d9b1924db43c25d82e8209a11 /Bugzilla
parentf162521444148d622df3b42a8304b6cce8f2150e (diff)
downloadbugzilla-d0724475098f99c584a7b013f5c5076b6e2b4bba.tar.gz
bugzilla-d0724475098f99c584a7b013f5c5076b6e2b4bba.tar.xz
Bug 343421: Fix some typos in comments - Patch by timeless <timeless@bemail.org> r=wicked a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Template.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 6094d6499..75b3dd5fa 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -219,7 +219,7 @@ sub get_format {
eval {
$self->context->template($template);
};
- # This parsing may seem fragile, but its OK:
+ # This parsing may seem fragile, but it's OK:
# http://lists.template-toolkit.org/pipermail/templates/2003-March/004370.html
# Even if it is wrong, any sort of error is going to cause a failure
# eventually, so the only issue would be an incorrect error message
@@ -253,7 +253,7 @@ sub quoteUrls {
# bug refs out, so we have to do replacements.
# mailto can't contain space or #, so we don't have to bother for that
# Do this by escaping \0 to \1\0, and replacing matches with \0\0$count\0\0
- # \0 is used because its unlikely to occur in the text, so the cost of
+ # \0 is used because it's unlikely to occur in the text, so the cost of
# doing this should be very small
# Also, \0 won't appear in the value_quote'd bug title, so we don't have
# to worry about bogus substitutions from there
@@ -269,7 +269,7 @@ sub quoteUrls {
# if it was substituted as a bug title (since that always involve leading
# and trailing text)
- # Because of entities, its easier (and quicker) to do this before escaping
+ # Because of entities, it's easier (and quicker) to do this before escaping
my @things;
my $count = 0;