aboutsummaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/table.cc')
-rw-r--r--src/table.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table.cc b/src/table.cc
index ce5f5ae9..589f7e1e 100644
--- a/src/table.cc
+++ b/src/table.cc
@@ -254,7 +254,7 @@ static void Html_tag_open_table_cell(DilloHtml *html,
if ((colspan < 0) || (attrbuf == invalid))
colspan = 1;
}
- /* todo: check errors? */
+ /* TODO: check errors? */
if ((attrbuf = a_Html_get_attr(html, tag, tagsize, "rowspan")))
rowspan = MAX(1, strtol (attrbuf, NULL, 10));