diff options
| author | Pierre Joye <pajoye@php.net> | 2008-04-16 09:30:16 +0000 |
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2008-04-16 09:30:16 +0000 |
| commit | 6b58f235b2b6beb1549f51d66b01490ddfdf56f1 (patch) | |
| tree | e83a1411f72ca327987f5c8f03841f97c20ce75b /ext | |
| parent | 4e584728e5763f3791262626b1f5b8e5b4eceef6 (diff) | |
| download | php-git-6b58f235b2b6beb1549f51d66b01490ddfdf56f1.tar.gz | |
- Fix protos
Diffstat (limited to 'ext')
| -rwxr-xr-x | ext/enchant/enchant.c | 10 |
1 files changed, 4 insertions, 6 deletions
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; |
