diff options
author | Pierre Joye <pajoye@php.net> | 2004-03-08 23:08:17 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2004-03-08 23:08:17 +0000 |
commit | f1ff65c155d4ace217f75a17e0add367b5f0aeca (patch) | |
tree | 011825186ecf16dec3d81bcd94ecdb987a4c4a71 /ext/enchant | |
parent | b703fe79f65ee6cd87f32f3e225465062db09bf4 (diff) | |
download | php-git-f1ff65c155d4ace217f75a17e0add367b5f0aeca.tar.gz |
- Fixes protos
Diffstat (limited to 'ext/enchant')
-rwxr-xr-x | ext/enchant/enchant.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/enchant/enchant.c b/ext/enchant/enchant.c index 8b5beaf31a..02876c3618 100755 --- a/ext/enchant/enchant.c +++ b/ext/enchant/enchant.c @@ -316,7 +316,7 @@ PHP_FUNCTION(enchant_broker_get_error) /* }}} */ /* {{{ proto resource enchant_broker_request_dict(resource broker, string tag) - create a new dict using tag, the non-empty language tag you wish to request + create a new dictionary using tag, the non-empty language tag you wish to request a dictionary for ("en_US", "de_DE", ...) */ PHP_FUNCTION(enchant_broker_request_dict) { @@ -366,8 +366,8 @@ PHP_FUNCTION(enchant_broker_request_dict) /* }}} */ /* {{{ proto resource enchant_broker_request_pwl_dict(resource dict, string tag) - creates a dictionnary using a PWL file. A PWL file is personal word file one word per line. - It must exists before the call.*/ + 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; @@ -430,7 +430,7 @@ PHP_FUNCTION(enchant_broker_free_dict) } /* }}} */ -/* {{{ proto bool enchant_new_dmy(resource broker, string tag) +/* {{{ proto bool enchant_broker_dict_exists(resource broker, string tag) Wether a dictionary exists or not. Using non-empty tag */ PHP_FUNCTION(enchant_broker_dict_exists) { @@ -455,7 +455,7 @@ PHP_FUNCTION(enchant_broker_dict_exists) described/referred to by 'tag'. The ordering is a comma delimited list of provider names. As a special exception, the "*" tag can be used as a language tag to declare a default ordering for any - language that does not explictly declare an ordering. */ + language that does not explictly declare an ordering. */ PHP_FUNCTION(enchant_broker_set_ordering) { @@ -516,7 +516,7 @@ PHP_FUNCTION(enchant_dict_check) /* }}} */ /* {{{ proto array enchant_dict_suggest(resource broker, string word) - Will return an list of values if any of those pre-conditions are not met.*/ + Will return a list of values if any of those pre-conditions are not met.*/ PHP_FUNCTION(enchant_dict_suggest) { zval *dict; |