Some minor comment changes

This commit is contained in:
Geert De Deckere 2009-06-14 10:44:07 +02:00
parent 92b78db45f
commit 3a8f633a7e

View file

@ -39,7 +39,7 @@ class Validate extends ArrayObject {
* Checks a field against a regular expression. * Checks a field against a regular expression.
* *
* @param string value * @param string value
* @param string regular expression to match * @param string regular expression to match (including delimeters)
* @return boolean * @return boolean
*/ */
public static function regex($value, $expression) public static function regex($value, $expression)
@ -72,7 +72,7 @@ class Validate extends ArrayObject {
} }
/** /**
* Check a email address for correct format. * Check an email address for correct format.
* *
* @see http://www.iamcal.com/publish/articles/php/parsing_email/ * @see http://www.iamcal.com/publish/articles/php/parsing_email/
* @see http://www.w3.org/Protocols/rfc822/ * @see http://www.w3.org/Protocols/rfc822/