Skip to content

Commit

Permalink
Fix recently introduced typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Narciso Jaramillo authored and marijnh committed Feb 8, 2013
1 parent ba5dc82 commit 96c4963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/edit/continuecomment.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

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

0 comments on commit 96c4963

Please sign in to comment.