]> granicus.if.org Git - php/commitdiff
Fix a couple of protos
authorRasmus Lerdorf <rasmus@php.net>
Sun, 14 Jul 2002 15:45:33 +0000 (15:45 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Sun, 14 Jul 2002 15:45:33 +0000 (15:45 +0000)
ext/ming/ming.c

index 88b7e3f7f73171a34be0c6d355489164c39558cc..a6e0c134bebe34cfd8e0ba33f72696d0cc16dc58 100644 (file)
@@ -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;