@@ -23,17 +23,17 @@ #ifdef __cplusplus } #endif #ifdef OF_HAVE_BLOCKS -typedef OFString* (^of_string_xml_unescaping_block_t)(OFString *str, +typedef OFString* (^of_string_xml_unescaping_block_t)(OFString *string, OFString *entity); #endif /** * \brief A protocol that needs to be implemented by delegates for - * -[stringByXMLUnescapingWithHandler:]. + * stringByXMLUnescapingWithHandler:. */ @protocol OFStringXMLUnescapingDelegate /** * \brief This callback is called when an unknown entity was found while trying * to unescape XML. @@ -40,15 +40,15 @@ * * 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 string 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 +- (OFString*)string: (OFString*)string containsUnknownEntityNamed: (OFString*)entity; @end /** * \brief A category for unescaping XML in strings.