@@ -27,10 +27,11 @@ * This callback is called when an unknown entity was found while trying to * unescape XML. The callback is supposed to return a substitution for the * entity or nil if it is unknown to the callback as well, in which case an * exception will be thrown. * + * \param str The string which contains the unknown entity * \param entity The name of the entity that is unknown * \return A substitution for the entity or nil */ - (OFString*)string: (OFString*)str containsUnknownEntityNamed: (OFString*)entity; @@ -47,21 +48,21 @@ /** * Unescapes XML in the string and uses the specified delegate for unknown * entities. * - * \param h An OFXMLUnescapingDelegate as a handler for unknown entities + * \param delegate An OFXMLUnescapingDelegate as a handler for unknown entities */ - (OFString*)stringByXMLUnescapingWithDelegate: (id )delegate; #ifdef OF_HAVE_BLOCKS /** * Unescapes XML in the string and uses the specified block for unknown * entities. * - * \param h A block as a handler for unknown entities + * \param block A block which handles unknown entities */ - (OFString*)stringByXMLUnescapingWithBlock: (of_string_xml_unescaping_block_t)block; #endif @end