summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config.pm
diff options
context:
space:
mode:
authortimeless%mozdev.org <>2005-11-26 06:57:06 +0100
committertimeless%mozdev.org <>2005-11-26 06:57:06 +0100
commit1e24933322d4fd449ef35e96f6cfdb15400c9c53 (patch)
tree392e8a7d20157c615251ca5630522df92f6f1f2e /Bugzilla/Config.pm
parent320d2aa13e79d2d3ef938bf9f12b3c931a8bb3f7 (diff)
downloadbugzilla-1e24933322d4fd449ef35e96f6cfdb15400c9c53.tar.gz
bugzilla-1e24933322d4fd449ef35e96f6cfdb15400c9c53.tar.xz
Bug 106386 Correct misspellings in source code
patch by unknown@simplemachines.org r=timeless rs=brendan
Diffstat (limited to 'Bugzilla/Config.pm')
-rw-r--r--Bugzilla/Config.pm4
1 files changed, 2 insertions, 2 deletions
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 '';