From 5501a4b4344a2d86fbdc5fee719b11b8929a604b Mon Sep 17 00:00:00 2001 From: nicobn Date: Fri, 10 Aug 2007 06:01:54 +0000 Subject: [PATCH] Fixed typo --- lib/Doctrine/Validator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Validator.php b/lib/Doctrine/Validator.php index ba216bafe..1104b99a6 100644 --- a/lib/Doctrine/Validator.php +++ b/lib/Doctrine/Validator.php @@ -49,7 +49,7 @@ class Doctrine_Validator extends Doctrine_Object if (class_exists($class)) { self::$validators[$name] = new $class; } else { - throw new Doctrine_Exception("Validator named '$name' not availible."); + throw new Doctrine_Exception("Validator named '$name' not available."); } }