summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
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 "";
}
};