summaryrefslogtreecommitdiff
path: root/man
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 /man
parent37b7d02f01d840b3519cb75a89672740850029d5 (diff)
Correct string length in cmark_parse_document example.
Diffstat (limited to 'man')
-rw-r--r--man/man3/cmark.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3
index d14f9a0..26c0d89 100644
--- a/man/man3/cmark.3
+++ b/man/man3/cmark.3
@@ -1,4 +1,4 @@
-.TH cmark 3 "August 07, 2015" "LOCAL" "Library Functions Manual"
+.TH cmark 3 "October 28, 2015" "LOCAL" "Library Functions Manual"
.SH
NAME
.PP
@@ -402,7 +402,7 @@ Simple interface:
.IP
.nf
\f[C]
-cmark_node *document = cmark_parse_document("Hello *world*", 12,
+cmark_node *document = cmark_parse_document("Hello *world*", 13,
CMARK_OPT_DEFAULT);
\f[]
.fi