summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-28 21:56:08 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-28 21:56:08 -0800
commitfeb119992a6fbea3cedead04b1941b1fe114990b (patch)
tree6895db0c15c9fa5125b5e800fe82f9965b8b2a1d /src/parser.h
parent9e9b74fe465d95f1d827de1825a18c39810c0816 (diff)
Renamed identifiers in public API:
cmark_doc_parser => cmark_parser cmark_new_doc_parser => cmark_parser_new cmark_free_doc_parser => cmark_parser_free cmark_finish => cmark_parser_finish cmark_process_line => cmark_parser_process_line cmark_node_destroy => cmark_node_free Closes #223.
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index bbbc3b1..e0ed507 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -11,7 +11,7 @@ extern "C" {
#define MAX_LINK_LABEL_LENGTH 1000
-struct cmark_doc_parser {
+struct cmark_parser {
struct cmark_reference_map *refmap;
struct cmark_node* root;
struct cmark_node* current;