diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-09-11 10:39:51 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-09-11 11:17:42 -0700 |
commit | 026fd723dc8bc327b86096c489df5b8f8e9035ba (patch) | |
tree | a5689654ca495e2a1afb3272cf5274bba85a0c9c | |
parent | 0efcb9ff947ee9fcda77f317f2bec811160dca4a (diff) |
Fixed typo.
starting
-rwxr-xr-x | js/stmd.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ""; } }; |