summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-09-07 07:46:15 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-09-07 07:46:15 -0700
commit76e133cafe0f45e44c57e391c67af1c2f0057004 (patch)
tree730b982edfe2aa8c752c144adef1d495a7539b74 /js
parent1325976ea8a23d8a7939486b44ace20f41b9635a (diff)
Fixed comment.
Diffstat (limited to 'js')
-rwxr-xr-xjs/stmd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/stmd.js b/js/stmd.js
index 1efbb19..29e4c01 100755
--- a/js/stmd.js
+++ b/js/stmd.js
@@ -342,7 +342,7 @@ var parseEmphasis = function(inlines) {
if (res.numdelims >= 1 && res.numdelims <= 3 && res.can_close &&
res.numdelims != first_close_delims) {
if (res.numdelims === 3) {
- // If we opened with ***, then we interpret *** as * followed by **
+ // If we opened with ***, then we interpret *** as ** followed by *
// giving us <strong><em>
res.numdelims = 1;
}