summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-09-11 10:39:51 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-09-11 11:17:42 -0700
commit026fd723dc8bc327b86096c489df5b8f8e9035ba (patch)
treea5689654ca495e2a1afb3272cf5274bba85a0c9c /js
parent0efcb9ff947ee9fcda77f317f2bec811160dca4a (diff)
Fixed typo.
starting
Diffstat (limited to 'js')
-rwxr-xr-xjs/stmd.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/stmd.js b/js/stmd.js
index f7a1e4c..4b80581 100755
--- 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 "";
}
};