]> granicus.if.org Git - php/commitdiff
- Fix protos
authorPierre Joye <pajoye@php.net>
Wed, 16 Apr 2008 09:30:16 +0000 (09:30 +0000)
committerPierre Joye <pajoye@php.net>
Wed, 16 Apr 2008 09:30:16 +0000 (09:30 +0000)
ext/enchant/enchant.c

index 193aebb62310cbd8ccadbf04f4d97e73902464a1..f47a2b34e36f7255c097e6e9034b01b74c5febe3 100755 (executable)
@@ -348,7 +348,7 @@ PHP_FUNCTION(enchant_broker_get_error)
 /* }}} */
 
 /* {{{ proto string enchant_broker_list_dicts(resource broker)
-   Returns the last error of the broker */
+   Lists the dictionaries available for the given broker */
 PHP_FUNCTION(enchant_broker_list_dicts)
 {
        zval *broker;
@@ -417,9 +417,8 @@ PHP_FUNCTION(enchant_broker_request_dict)
 }
 /* }}} */
 
-/* {{{ proto resource enchant_broker_request_pwl_dict(resource dict, string filename)
-   creates a dictionary using a PWL file. A PWL file is personal word file one word per line.
-   It must exist before the call.*/
+/* {{{ proto resource enchant_broker_request_pwl_dict(resource broker, string filename)
+   creates a dictionary using a PWL file. A PWL file is personal word file one word per line. It must exist before the call.*/
 PHP_FUNCTION(enchant_broker_request_pwl_dict)
 {
        zval *broker;
@@ -532,8 +531,7 @@ PHP_FUNCTION(enchant_broker_set_ordering)
 /* }}} */
 
 /* {{{ proto array enchant_broker_describe(resource broker)
-       Enumerates the Enchant providers and tells
-       you some rudimentary information about them. The same info is provided through phpinfo() */
+       Enumerates the Enchant providers and tells you some rudimentary information about them. The same info is provided through phpinfo() */
 PHP_FUNCTION(enchant_broker_describe)
 {
        EnchantBrokerDescribeFn describetozval = enumerate_providers_fn;