Skip to content

Commit 0462939

Browse files
committed
Fix superfluous comma
1 parent d913da9 commit 0462939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mode/perl/perl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ CodeMirror.defineMode("perl",function(){
788788
style:null,
789789
tail:null};},
790790
token:function(stream,state){
791-
return (state.tokenize||tokenPerl)(stream,state);},
791+
return (state.tokenize||tokenPerl)(stream,state);}
792792
};});
793793

794794
CodeMirror.registerHelper("wordChars", "perl", /[\w$]/);

0 commit comments

Comments
 (0)