diff --git a/internals2/funcs/index.xml b/internals2/funcs/index.xml
index afaba2fa8b..a6d38de799 100644
--- a/internals2/funcs/index.xml
+++ b/internals2/funcs/index.xml
@@ -137,8 +137,8 @@ void zif_hello_world(int ht, zval *return_value, zval **return_value_ptr,
zval **return_value_ptr
- When returning data by reference to PHP set this to a pointer to
- your variable. It is not suggested to returning by reference.
+ When returning references to PHP set this to a pointer to
+ your variable. It is not suggested to return references.
@@ -223,7 +223,7 @@ PHP_FUNCTION(hello_world)
RETURN_TRUE;
}
/* }}} */
-]]]>
+]]>
@@ -270,7 +270,7 @@ PHP_FUNCTION(hello_world)
Please mind that FAILURE
is represented by a -1
- and SUCCESS
by 0
. To make the could clear you
+ and SUCCESS
by 0
. To make the code clear you
should always use the named constants for comparing the value.