summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Object.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-02-11 01:01:15 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-02-11 01:01:15 +0100
commitd4f7ab1e416445c9a56a9da93eddc536099d22c2 (patch)
tree70f5b16028ed60126803b3093e696ffc75b05750 /Bugzilla/Object.pm
parentf6fc02e572ba07782a272e8fc8f9f45e13ba4896 (diff)
downloadbugzilla-d4f7ab1e416445c9a56a9da93eddc536099d22c2.tar.gz
bugzilla-d4f7ab1e416445c9a56a9da93eddc536099d22c2.tar.xz
Fix a typo in Object.pm.
https://bugzilla.mozilla.org/show_bug.cgi?id=545524
Diffstat (limited to 'Bugzilla/Object.pm')
-rw-r--r--Bugzilla/Object.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm
index 75aa533ca..bf8d69d5a 100644
--- a/Bugzilla/Object.pm
+++ b/Bugzilla/Object.pm
@@ -487,7 +487,7 @@ sub get_all {
sub check_boolean { return $_[1] ? 1 : 0 }
-# For some clases, VALIDATORS takes time to generate, so we cache it. Also,
+# For some classes, VALIDATORS takes time to generate, so we cache it. Also,
# this allows the object_validators hook to only run once per request,
# instead of every time we call set() on a class of objects.
#