Skip to content

Commit 678f155

Browse files
Freed-Wue-kwsm
andauthored
Update src/ShellCheck/EditorConfig.hs
Co-authored-by: Eisuke Kawashima <e.kawaschima+github@gmail.com>
1 parent 40d670a commit 678f155

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ShellCheck/EditorConfig.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ globToRegexString pattern = "^" ++ prefix ++ go pattern ++ "$"
203203
| Just from <- readInt fromStr
204204
, Just to <- readInt toStr ->
205205
map show $
206-
if from <= to
206+
if from < to
207207
then [from..to]
208208
else []
209209
_ -> splitCommas body

0 commit comments

Comments
 (0)