From: Pierre Joye Date: Wed, 16 Apr 2008 09:30:16 +0000 (+0000) Subject: - Fix protos X-Git-Tag: RELEASE_2_0_0b1~353 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b58f235b2b6beb1549f51d66b01490ddfdf56f1;p=php - Fix protos --- diff --git a/ext/enchant/enchant.c b/ext/enchant/enchant.c index 193aebb623..f47a2b34e3 100755 --- a/ext/enchant/enchant.c +++ b/ext/enchant/enchant.c @@ -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;