From: Rasmus Lerdorf Date: Sun, 14 Jul 2002 15:45:33 +0000 (+0000) Subject: Fix a couple of protos X-Git-Tag: dev~305 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d992a9f0ddef2c7a07bf8ec7679c8df8d0b32b2;p=php Fix a couple of protos --- diff --git a/ext/ming/ming.c b/ext/ming/ming.c index 88b7e3f7f7..a6e0c134be 100644 --- a/ext/ming/ming.c +++ b/ext/ming/ming.c @@ -1249,8 +1249,8 @@ static SWFMorph getMorph(zval *id TSRMLS_DC) } /* }}} */ -/* {{{ proto SWFShape swfmorph_getShape1(void) - Return's this SWFMorph's start shape */ +/* {{{ proto object swfmorph_getShape1(void) + Return's this SWFMorph's start shape object */ PHP_FUNCTION(swfmorph_getShape1) { SWFMorph morph = getMorph(getThis() TSRMLS_CC); @@ -1263,8 +1263,8 @@ PHP_FUNCTION(swfmorph_getShape1) } /* }}} */ -/* {{{ proto SWFShape swfmorph_getShape2(void) - Return's this SWFMorph's start shape */ +/* {{{ proto object swfmorph_getShape2(void) + Return's this SWFMorph's start shape object */ PHP_FUNCTION(swfmorph_getShape2) { SWFMorph morph = getMorph(getThis() TSRMLS_CC); @@ -2133,8 +2133,8 @@ static SWFMovieClip getSprite(zval *id TSRMLS_DC) } /* }}} */ -/* {{{ proto SWFDisplayItem swfsprite_add(SWFCharacter) - Adds the character to the sprite, returns a displayitem */ +/* {{{ proto object swfsprite_add(SWFCharacter) + Adds the character to the sprite, returns a displayitem object */ PHP_FUNCTION(swfsprite_add) { zval **zchar;