summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Wolffelaar <jeroen@php.net>2001-08-13 22:34:02 +0000
committerJeroen van Wolffelaar <jeroen@php.net>2001-08-13 22:34:02 +0000
commitd1881c8e266eeef8a0ab854280ca70f48fb01c51 (patch)
treebf578f0fe800148391f05a2e857cfbd5bb54d3ee
parent6be14623c52ac6d8b8be51f05a1ecccf97abad12 (diff)
downloadphp-git-d1881c8e266eeef8a0ab854280ca70f48fb01c51.tar.gz
Reverted - Didn't yet read Torben's mail - Sorry!
-rw-r--r--ext/aspell/aspell.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c
index 961318b958..63ae1b662b 100644
--- a/ext/aspell/aspell.c
+++ b/ext/aspell/aspell.c
@@ -77,7 +77,7 @@ PHP_MINIT_FUNCTION(aspell)
}
/* }}} */
-/* {{{ proto resource aspell_new(string master [, string personal])
+/* {{{ proto int aspell_new(string master [, string personal])
Load a dictionary */
PHP_FUNCTION(aspell_new)
{
@@ -104,7 +104,7 @@ PHP_FUNCTION(aspell_new)
}
/* }}} */
-/* {{{ proto array aspell_suggest(resource aspell, string word)
+/* {{{ proto array aspell_suggest(aspell int, string word)
Return array of Suggestions */
PHP_FUNCTION(aspell_suggest)
{
@@ -141,7 +141,7 @@ PHP_FUNCTION(aspell_suggest)
}
/* }}} */
-/* {{{ proto bool aspell_check(resource aspell, string word)
+/* {{{ proto int aspell_check(aspell int, string word)
Return if word is valid */
PHP_FUNCTION(aspell_check)
{
@@ -173,7 +173,7 @@ PHP_FUNCTION(aspell_check)
}
/* }}} */
-/* {{{ proto int aspell_check_raw(resource aspell, string word)
+/* {{{ proto int aspell_check_raw(aspell int, string word)
Return if word is valid, ignoring case or trying to trim it in any way */
PHP_FUNCTION(aspell_check_raw)
{