Skip to content

Commit 341eeb9

Browse files
committed
Fix misplaced semicolon in searchcursor.js
1 parent 3dd914d commit 341eeb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addon/search/searchcursor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// CodeMirror, copyright (c) by Marijn Haverbeke and others
22
// Distributed under an MIT license: http://codemirror.net/LICENSE
33

4-
;(function(mod) {
4+
(function(mod) {
55
if (typeof exports == "object" && typeof module == "object") // CommonJS
66
mod(require("../../lib/codemirror"))
77
else if (typeof define == "function" && define.amd) // AMD
@@ -278,4 +278,4 @@
278278
if (ranges.length)
279279
this.setSelections(ranges, 0)
280280
})
281-
})
281+
});

0 commit comments

Comments
 (0)