From b2d3bab9d1adb9386e006dd6949aed3ce76f1978 Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Fri, 17 Nov 2017 21:55:46 -0500 Subject: [PATCH] Doxygen fixes for previous. --- src/parser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parser.h b/src/parser.h index c04e1e8..77d4cb6 100644 --- a/src/parser.h +++ b/src/parser.h @@ -54,7 +54,7 @@ Bool TY_(CheckNodeIntegrity)(Node *node); /** * Indicates whether or not a text node ends with a space or newline. - * @note Implementation of this method is found in @ref pprint.c for + * @note Implementation of this method is found in `pprint.c` for * some reason. * @param lexer A reference to the lexer used to lex the document. * @param node The node to check. @@ -78,7 +78,7 @@ Bool TY_(IsNewNode)(Node *node); * to a
. * @param doc The document which the node belongs to. * @param node The node to coerce. - * @param TidyTagId The tag type to coerce the node into. + * @param tid The tag type to coerce the node into. * @param obsolete If the old node was obsolete, a report will be generated. * @param expected If the old node was not expected to be found in this * particular location, a report will be generated. @@ -147,7 +147,7 @@ Node *TY_(TrimEmptyElement)( TidyDocImpl* doc, Node *element ); /** * Trims a tree of empty elements recursively, returning the next node. * @param doc The Tidy document. - * @param element The element to trim. + * @param node The element to trim. * @returns Returns the next node. */ Node* TY_(DropEmptyElements)(TidyDocImpl* doc, Node* node); @@ -184,7 +184,7 @@ void TY_(ParseDocument)( TidyDocImpl* doc ); /** * Indicates whether or not whitespace is to be preserved in XHTML/XML * documents. - * @param lexer The Tidy document. + * @param doc The Tidy document. * @param element The node to test. * @returns Returns the result of the test. */