Skip to content

Commit d5f89db

Browse files
committed
fix comment typo
1 parent 9267d40 commit d5f89db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ext/reflection/php_reflection.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5712,7 +5712,7 @@ ZEND_METHOD(ReflectionProperty, setValue)
57125712
}
57135713
/* }}} */
57145714

5715-
/* {{{ Returns this property's value */
5715+
/* {{{ Returns true if property was initialized */
57165716
ZEND_METHOD(ReflectionProperty, isInitialized)
57175717
{
57185718
reflection_object *intern;
@@ -6544,7 +6544,7 @@ ZEND_METHOD(ReflectionAttribute, __toString)
65446544
}
65456545
/* }}} */
65466546

6547-
/* {{{ * Returns the name of the attribute */
6547+
/* {{{ Returns the name of the attribute */
65486548
ZEND_METHOD(ReflectionAttribute, getName)
65496549
{
65506550
reflection_object *intern;
@@ -6559,7 +6559,7 @@ ZEND_METHOD(ReflectionAttribute, getName)
65596559
}
65606560
/* }}} */
65616561

6562-
/* {{{ * Returns the target of the attribute */
6562+
/* {{{ Returns the target of the attribute */
65636563
ZEND_METHOD(ReflectionAttribute, getTarget)
65646564
{
65656565
reflection_object *intern;
@@ -6574,7 +6574,7 @@ ZEND_METHOD(ReflectionAttribute, getTarget)
65746574
}
65756575
/* }}} */
65766576

6577-
/* {{{ * Returns true if the attribute is repeated */
6577+
/* {{{ Returns true if the attribute is repeated */
65786578
ZEND_METHOD(ReflectionAttribute, isRepeated)
65796579
{
65806580
reflection_object *intern;
@@ -6589,7 +6589,7 @@ ZEND_METHOD(ReflectionAttribute, isRepeated)
65896589
}
65906590
/* }}} */
65916591

6592-
/* {{{ * Returns the arguments passed to the attribute */
6592+
/* {{{ Returns the arguments passed to the attribute */
65936593
ZEND_METHOD(ReflectionAttribute, getArguments)
65946594
{
65956595
reflection_object *intern;
@@ -6706,7 +6706,7 @@ static void attribute_ctor_cleanup(
67066706
}
67076707
/* }}} */
67086708

6709-
/* {{{ * Returns the attribute as an object */
6709+
/* {{{ Returns the attribute as an object */
67106710
ZEND_METHOD(ReflectionAttribute, newInstance)
67116711
{
67126712
reflection_object *intern;

0 commit comments

Comments
 (0)