- Commit
- 026fd723dc8bc327b86096c489df5b8f8e9035ba
- Parent
- 0efcb9ff947ee9fcda77f317f2bec811160dca4a
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Fixed typo.
starting
My personal build of CMark ✏️
Fixed typo.
starting
1 file changed, 2 insertions, 2 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | js/stmd.js | 4 | 2 | 2 |
diff --git a/js/stmd.js b/js/stmd.js @@ -1401,7 +1401,7 @@ case 'Code': return inTags('code', [], this.escape(inline.c)); default: - console.log("Uknown inline type " + inline.t); + console.log("Unknown inline type " + inline.t); return ""; } }; @@ -1465,7 +1465,7 @@ case 'HorizontalRule': return inTags('hr',[],"",true); default: - console.log("Uknown block type " + block.t); + console.log("Unknown block type " + block.t); return ""; } };