summaryrefslogtreecommitdiff
path: root/render/html.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-24 14:02:31 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-24 14:02:31 +0000
commitd9a2c7b9c155256a322e66ce3aec6dfe0147941c (patch)
tree5a8b8eaf62486c02aa33d1b8a5f71b03b7c056bb /render/html.h
parent07c8ea22a5b1d8e10db20a24127332da8c7e2b72 (diff)
downloadnetsurf-d9a2c7b9c155256a322e66ce3aec6dfe0147941c.tar.gz
netsurf-d9a2c7b9c155256a322e66ce3aec6dfe0147941c.tar.bz2
fix some doxygen errors
Diffstat (limited to 'render/html.h')
-rw-r--r--render/html.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/render/html.h b/render/html.h
index b8429fd17..30219a3bd 100644
--- a/render/html.h
+++ b/render/html.h
@@ -88,7 +88,7 @@ struct html_script {
};
-/** An object (<img>, <object>, etc.) in a CONTENT_HTML document. */
+/** An object (img, object, etc. tag) in a CONTENT_HTML document. */
struct content_html_object {
struct content *parent; /**< Parent document */
struct content_html_object *next; /**< Next in chain */
@@ -105,7 +105,7 @@ struct html_scrollbar_data {
struct box *box;
};
-/** Frame tree (<frameset>, <frame>) */
+/** Frame tree (frameset or frame tag) */
struct content_html_frames {
int cols; /** number of columns in frameset */
int rows; /** number of rows in frameset */
@@ -126,7 +126,7 @@ struct content_html_frames {
struct content_html_frames *children; /** [cols * rows] children */
};
-/** Inline frame list (<iframe>) */
+/** Inline frame list (iframe tag) */
struct content_html_iframe {
struct box *box;