summaryrefslogtreecommitdiff
path: root/src/cmark.h
diff options
context:
space:
mode:
authorLee Jeffery <lee@leejeffery.co.uk>2015-10-28 23:56:02 +0000
committerLee Jeffery <lee@leejeffery.co.uk>2015-10-28 23:56:02 +0000
commitb7de53ec29dacd30b91796a2e558883f019d0b16 (patch)
tree9c067a4ee7e19862ba0f596f3421032b9b69269f /src/cmark.h
parent37b7d02f01d840b3519cb75a89672740850029d5 (diff)
Correct string length in cmark_parse_document example.
Diffstat (limited to 'src/cmark.h')
-rw-r--r--src/cmark.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmark.h b/src/cmark.h
index 3ad4486..79bfbc5 100644
--- a/src/cmark.h
+++ b/src/cmark.h
@@ -368,7 +368,7 @@ CMARK_EXPORT void cmark_consolidate_text_nodes(cmark_node *root);
*
* Simple interface:
*
- * cmark_node *document = cmark_parse_document("Hello *world*", 12,
+ * cmark_node *document = cmark_parse_document("Hello *world*", 13,
* CMARK_OPT_DEFAULT);
*
* Streaming interface: