]> granicus.if.org Git - php/commitdiff
- Fixes protos
authorPierre Joye <pajoye@php.net>
Mon, 8 Mar 2004 23:08:17 +0000 (23:08 +0000)
committerPierre Joye <pajoye@php.net>
Mon, 8 Mar 2004 23:08:17 +0000 (23:08 +0000)
ext/enchant/enchant.c

index 8b5beaf31a7c22c7e8ee521777d6b3243a371aef..02876c3618996365ee9a1464b7e6eeddff52a771 100755 (executable)
@@ -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;