8000 Fix lint error · codemirror/codemirror5@eb345ef · GitHub
[go: up one dir, main page]

Skip to content

Commit eb345ef

Browse files
committed
Fix lint error
1 parent ffc1792 commit eb345ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mode/shell/shell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ CodeMirror.defineMode('shell', function() {
7171
return 'attribute';
7272
}
7373
if (ch == "<") {
74-
let heredoc = stream.match(/^<-?\s+(.*)/)
74+
var heredoc = stream.match(/^<-?\s+(.*)/)
7575
if (heredoc) {
7676
state.tokens.unshift(tokenHeredoc(heredoc[1]))
7777
return 'string-2'

0 commit comments

Comments
 (0)
0