diff options
author | Antony Dovgal <tony2001@php.net> | 2006-04-03 09:14:33 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-04-03 09:14:33 +0000 |
commit | bace0def1e45b290a4b536a900793df49a56ee3d (patch) | |
tree | f76ea733ad392ae1733a0197ef26117188b057da /ext/mhash | |
parent | b97b088800db2c831f5210877999bc215354c4b5 (diff) | |
download | php-git-bace0def1e45b290a4b536a900793df49a56ee3d.tar.gz |
fix spelling in error messages:
greater/less thEn -> greater/less thAn
Diffstat (limited to 'ext/mhash')
-rw-r--r-- | ext/mhash/mhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mhash/mhash.c b/ext/mhash/mhash.c index b3bb077fd0..e175f8b79a 100644 --- a/ext/mhash/mhash.c +++ b/ext/mhash/mhash.c @@ -205,7 +205,7 @@ PHP_FUNCTION(mhash_keygen_s2k) WRONG_PARAM_COUNT; } if (bytes <= 0){ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "the byte parameter must be greater then 0"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "the byte parameter must be greater than 0"); RETURN_FALSE; } |