summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/CGI.pm2
-rw-r--r--Bugzilla/Config.pm4
-rw-r--r--Bugzilla/Util.pm2
3 files changed, 4 insertions, 4 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm
index 8db65eeda..b722aee3d 100644
--- a/Bugzilla/CGI.pm
+++ b/Bugzilla/CGI.pm
@@ -183,7 +183,7 @@ sub multipart_start {
}
# The various parts of Bugzilla which create cookies don't want to have to
-# pass them arround to all of the callers. Instead, store them locally here,
+# pass them around to all of the callers. Instead, store them locally here,
# and then output as required from |header|.
sub send_cookie {
my $self = shift;
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index e30d48cb9..12d26796c 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -192,8 +192,8 @@ sub SetParam {
# sanity check the value
# XXX - This runs the checks. Which would be good, except that
- # check_shadowdb creates the database as a sideeffect, and so the
- # checker fails the second time arround...
+ # check_shadowdb creates the database as a side effect, and so the
+ # checker fails the second time around...
if ($name ne 'shadowdb' && exists $entry->{'checker'}) {
my $err = $entry->{'checker'}->($value, $entry);
die "Param $name is not valid: $err" unless $err eq '';
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 3a9d6dae7..21885bbdc 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -94,7 +94,7 @@ sub html_quote {
return $var;
}
-# This orignally came from CGI.pm, by Lincoln D. Stein
+# This originally came from CGI.pm, by Lincoln D. Stein
sub url_quote {
my ($toencode) = (@_);
$toencode =~ s/([^a-zA-Z0-9_\-.])/uc sprintf("%%%02x",ord($1))/eg;