summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-14 08:18:27 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-14 08:18:27 -0800
commit66e986ec02c417ba9387dbf906381bba598c3f00 (patch)
treee0b5b7d693010e18846fbe210338ed90ae6761b2 /src/print.c
parent6df2047d90d81e6269a37e7e6843211edf4ba3c6 (diff)
Rename CMARK_NODE_INLINE_CODE -> CMARK_NODE_CODE.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 9384a0b..951d238 100644
--- a/src/print.c
+++ b/src/print.c
@@ -99,7 +99,7 @@ static void render_nodes(strbuf* buffer, cmark_node* node, int indent)
case NODE_SOFTBREAK:
strbuf_printf(buffer, "softbreak\n");
break;
- case NODE_INLINE_CODE:
+ case NODE_CODE:
strbuf_printf(buffer, "code ");
print_str(buffer, node->as.literal.data, node->as.literal.len);
strbuf_putc(buffer, '\n');