summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/Doxyfile12
-rw-r--r--src/tokeniser/tokeniser.c2
-rw-r--r--src/treebuilder/after_head.c2
3 files changed, 8 insertions, 8 deletions
diff --git a/build/Doxyfile b/build/Doxyfile
index 65c6483..21e206e 100644
--- a/build/Doxyfile
+++ b/build/Doxyfile
@@ -138,7 +138,7 @@ SHORT_NAMES = NO
# comments will behave just like the Qt-style comments (thus requiring an
# explicit @brief command for a brief description.
-JAVADOC_AUTOBRIEF = NO
+JAVADOC_AUTOBRIEF = YES
# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
# treat a multi-line C++ special comment block (i.e. a block of //! or ///
@@ -228,17 +228,17 @@ SUBGROUPING = YES
# Private class members and static file members will be hidden unless
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
-EXTRACT_ALL = NO
+EXTRACT_ALL = YES
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
# will be included in the documentation.
-EXTRACT_PRIVATE = NO
+EXTRACT_PRIVATE = YES
# If the EXTRACT_STATIC tag is set to YES all static members of a file
# will be included in the documentation.
-EXTRACT_STATIC = NO
+EXTRACT_STATIC = YES
# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
# defined locally in source files will be included in the documentation.
@@ -387,7 +387,7 @@ SHOW_USED_FILES = YES
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
# in the documentation. The default is NO.
-SHOW_DIRECTORIES = NO
+SHOW_DIRECTORIES = YES
# The FILE_VERSION_FILTER tag can be used to specify a program or script that
# doxygen should invoke to get the current version for each file (typically from the
@@ -556,7 +556,7 @@ FILTER_SOURCE_FILES = NO
# Note: To get rid of all source code in the generated output, make sure also
# VERBATIM_HEADERS is set to NO.
-SOURCE_BROWSER = NO
+SOURCE_BROWSER = YES
# Setting the INLINE_SOURCES tag to YES will include the body
# of functions and classes directly in the documentation.
diff --git a/src/tokeniser/tokeniser.c b/src/tokeniser/tokeniser.c
index fbc9534..7f68676 100644
--- a/src/tokeniser/tokeniser.c
+++ b/src/tokeniser/tokeniser.c
@@ -3174,7 +3174,7 @@ hubbub_error emit_current_comment(hubbub_tokeniser *tokeniser)
* Emit the current doctype token being stored in the tokeniser context.
*
* \param tokeniser Tokeniser instance
- * \param force_qurirks Force quirks mode on this document
+ * \param force_quirks Force quirks mode on this document
* \return true
*/
hubbub_error emit_current_doctype(hubbub_tokeniser *tokeniser,
diff --git a/src/treebuilder/after_head.c b/src/treebuilder/after_head.c
index 144496f..5ec6ca4 100644
--- a/src/treebuilder/after_head.c
+++ b/src/treebuilder/after_head.c
@@ -87,7 +87,7 @@ hubbub_error handle_after_head(hubbub_treebuilder *treebuilder,
}
break;
case HUBBUB_TOKEN_END_TAG:
- /** \parse error */
+ /** \todo parse error */
break;
case HUBBUB_TOKEN_EOF:
err = HUBBUB_REPROCESS;