Skip to content

Commit 96c4963

Browse files
Narciso Jaramillomarijnh
authored andcommitted
Fix recently introduced typo
1 parent ba5dc82 commit 96c4963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/edit/continuecomment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
if (token.type == "comment" && mode.blockCommentStart) {
1414
var end = token.string.indexOf(mode.blockCommentEnd);
15-
var full = cm.getRange(CodeMirro.Pos(pos.line, 0), CodeMirror.Pos(pos.line, token.end)), found;
15+
var full = cm.getRange(CodeMirror.Pos(pos.line, 0), CodeMirror.Pos(pos.line, token.end)), found;
1616
if (end != -1 && end == token.string.length - mode.blockCommentEnd.length) {
1717
// Comment ended, don't continue it
1818
} else if (token.string.indexOf(mode.blockCommentStart) == 0) {

0 commit comments

Comments
 (0)