fix with PHP master
[m6w6/ext-propro] / src / php_propro_api.h
index d82055ffa6d5c01b7bb98e02796221a66d2bf2c5..a33cd34eb98f9639eec17272a8f000a2667488b7 100644 (file)
@@ -21,7 +21,7 @@
  * Container for the object/array holding the proxied property.
  */
 struct php_property_proxy {
-       /** The container holding the property */
+       /** The reference to the container holding the property */
        zval container;
        /** The name of the proxied property */
        zend_string *member;
@@ -35,7 +35,7 @@ typedef struct php_property_proxy php_property_proxy_t;
  * member accessible by reference from PHP userland.
  *
  * Example:
- * ~~~~~~~~~~{.c}
+ * \code{.c}
  * static zval *my_read_prop(zval *object, zval *member, int type, void **cache_slot, zval *tmp)
  * {
  *    zval *return_value;
@@ -59,7 +59,7 @@ typedef struct php_property_proxy php_property_proxy_t;
  *
  *    return return_value;
  * }
- * ~~~~~~~~~~
+ * \endcode
  */
 struct php_property_proxy_object {
        /** The actual property proxy */