]> granicus.if.org Git - php/commitdiff
tweaks to prototypes
authorChuck Hagenbuch <chagenbu@php.net>
Tue, 4 Apr 2000 02:56:42 +0000 (02:56 +0000)
committerChuck Hagenbuch <chagenbu@php.net>
Tue, 4 Apr 2000 02:56:42 +0000 (02:56 +0000)
ext/mcal/php_mcal.c

index bf0f8c340d70c46d49a492448c533fca80d7b10c..f2af5e99ac666de3da850cb85c2238f640d7acca 100644 (file)
@@ -380,7 +380,7 @@ PHP_FUNCTION(mcal_popen)
 }
 
 /* {{{ proto int mcal_reopen(int stream_id, string calendar [, int options])
-   Reopen MCAL stream to new calendar */
+   Reopen MCAL stream to new calendar */
 PHP_FUNCTION(mcal_reopen)
 {
        zval **streamind, **calendar, **options;
@@ -417,9 +417,8 @@ PHP_FUNCTION(mcal_reopen)
 }
 /* }}} */
 
-
 /* {{{ proto int mcal_expunge(int stream_id)
-   Delete all messages marked for deletion */
+   Delete all events marked for deletion */
 PHP_FUNCTION(mcal_expunge)
 {
        zval **streamind;
@@ -560,10 +559,8 @@ PHP_FUNCTION(mcal_list_events)
 }
 /* }}} */
 
-
 /* {{{ proto string mcal_create_calendar(int stream_id, string calendar)
    Create a new calendar */
-
 PHP_FUNCTION(mcal_create_calendar)
 {
        zval **streamind, **calendar;
@@ -596,7 +593,6 @@ PHP_FUNCTION(mcal_create_calendar)
 }
 /* }}} */
 
-
 /* {{{ proto string mcal_rename(int stream_id, string src_calendar, string dest_calendar)
    Rename a calendar */
 PHP_FUNCTION(mcal_rename_calendar)
@@ -715,7 +711,7 @@ PHP_FUNCTION(mcal_delete_calendar)
 /* }}} */
 
 /* {{{ proto string mcal_delete_event(int stream_id, int uid)
-   Delete event */
+   Delete an event */
 PHP_FUNCTION(mcal_delete_event)
 {
        zval **streamind, **uid;
@@ -837,7 +833,6 @@ PHP_FUNCTION(mcal_snooze)
 }
 /* }}} */
 
-
 /* {{{ proto string mcal_event_set_category(int stream_id, string category)
    Attach a category to an event */
 PHP_FUNCTION(mcal_event_set_category)
@@ -1516,7 +1511,7 @@ PHP_FUNCTION(mcal_event_set_recur_monthly_mday)
 /* }}} */
 
 /* {{{ proto string mcal_event_set_recur_monthly_wday(int stream_id, int year, int month, int day, int interval)
-   Create a monthy by week recurrence */
+   Create a monthly by week recurrence */
 PHP_FUNCTION(mcal_event_set_recur_monthly_wday)
 {
        zval **streamind, **year, **month, **day, **interval;