Skip to content

Commit f1ff65c

Browse files
committed
- Fixes protos
1 parent b703fe7 commit f1ff65c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ext/enchant/enchant.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ PHP_FUNCTION(enchant_broker_get_error)
316316
/* }}} */
317317

318318
/* {{{ proto resource enchant_broker_request_dict(resource broker, string tag)
319-
create a new dict using tag, the non-empty language tag you wish to request
319+
create a new dictionary using tag, the non-empty language tag you wish to request
320320
a dictionary for ("en_US", "de_DE", ...) */
321321
PHP_FUNCTION(enchant_broker_request_dict)
322322
{
@@ -366,8 +366,8 @@ PHP_FUNCTION(enchant_broker_request_dict)
366366
/* }}} */
367367

368368
/* {{{ proto resource enchant_broker_request_pwl_dict(resource dict, string tag)
369-
creates a dictionnary using a PWL file. A PWL file is personal word file one word per line.
370-
It must exists before the call.*/
369+
creates a dictionary using a PWL file. A PWL file is personal word file one word per line.
370+
It must exist before the call.*/
371371
PHP_FUNCTION(enchant_broker_request_pwl_dict)
372372
{
373373
zval *broker;
@@ -430,7 +430,7 @@ PHP_FUNCTION(enchant_broker_free_dict)
430430
}
431431
/* }}} */
432432

433-
/* {{{ proto bool enchant_new_dmy(resource broker, string tag)
433+
/* {{{ proto bool enchant_broker_dict_exists(resource broker, string tag)
434434
Wether a dictionary exists or not. Using non-empty tag */
435435
PHP_FUNCTION(enchant_broker_dict_exists)
436436
{
@@ -455,7 +455,7 @@ PHP_FUNCTION(enchant_broker_dict_exists)
455455
described/referred to by 'tag'. The ordering is a comma delimited
456456
list of provider names. As a special exception, the "*" tag can
457457
be used as a language tag to declare a default ordering for any
458-
language that does not explictly declare an ordering. */
458+
language that does not explictly declare an ordering. */
459459

460460
PHP_FUNCTION(enchant_broker_set_ordering)
461461
{
@@ -516,7 +516,7 @@ PHP_FUNCTION(enchant_dict_check)
516516
/* }}} */
517517

518518
/* {{{ proto array enchant_dict_suggest(resource broker, string word)
519-
Will return an list of values if any of those pre-conditions are not met.*/
519+
Will return a list of values if any of those pre-conditions are not met.*/
520520
PHP_FUNCTION(enchant_dict_suggest)
521521
{
522522
zval *dict;

0 commit comments

Comments
 (0)