From 1fa3b21c15a291cf442138513849930d23e1a102 Mon Sep 17 00:00:00 2001 From: Matt Wilmas Date: Sat, 6 Jun 2009 02:40:49 +0000 Subject: MFH: Fixed error message grammar: - "cannot" instead of "can not" (meaning "also can") - "than" instead of "then" (Hint: "then" should hardly be needed; you're not telling the order in which to do something) ... plus removed a couple ending. dots --- ext/mcrypt/mcrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/mcrypt') diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 5164a585f7..1a5646eac1 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -1373,7 +1373,7 @@ PHP_FUNCTION(mcrypt_create_iv) } if (size <= 0 || size >= INT_MAX) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can not create an IV with a size of less then 1 or greater then %d", INT_MAX); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot create an IV with a size of less than 1 or greater than %d", INT_MAX); RETURN_FALSE; } -- cgit v1.2.1