/* }}} */
/* {{{ 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)
{
/* }}} */
/* {{{ 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;
}
/* }}} */
-/* {{{ 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)
{
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)
{
/* }}} */
/* {{{ 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;