]> granicus.if.org Git - php/commitdiff
Fixed proto's
authorJeroen van Wolffelaar <jeroen@php.net>
Mon, 13 Aug 2001 22:30:55 +0000 (22:30 +0000)
committerJeroen van Wolffelaar <jeroen@php.net>
Mon, 13 Aug 2001 22:30:55 +0000 (22:30 +0000)
ext/aspell/aspell.c

index 63ae1b662bb9d119cdc968468e116b87415d652a..961318b95830be26e61f86afcc0a540b33f6475c 100644 (file)
@@ -77,7 +77,7 @@ PHP_MINIT_FUNCTION(aspell)
 }
 /* }}} */
 
-/* {{{ proto int aspell_new(string master [, string personal])
+/* {{{ proto resource 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(aspell int, string word)
+/* {{{ proto array aspell_suggest(resource aspell, string word)
    Return array of Suggestions */
 PHP_FUNCTION(aspell_suggest)
 {
@@ -141,7 +141,7 @@ PHP_FUNCTION(aspell_suggest)
 }
 /* }}} */
 
-/* {{{ proto int aspell_check(aspell int, string word)
+/* {{{ proto bool aspell_check(resource aspell, string word)
    Return if word is valid */
 PHP_FUNCTION(aspell_check)
 {
@@ -173,7 +173,7 @@ PHP_FUNCTION(aspell_check)
 }
 /* }}} */
 
-/* {{{ proto int aspell_check_raw(aspell int, string word)
+/* {{{ proto int aspell_check_raw(resource aspell, string word)
    Return if word is valid, ignoring case or trying to trim it in any way */
 PHP_FUNCTION(aspell_check_raw)
 {