Skip to content

Commit 5e311a3

Browse files
committed
fix: SwiftLint number_separator violation
1 parent 6a167a5 commit 5e311a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TablePro/Views/Editor/SQLEditorCoordinator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ final class SQLEditorCoordinator: TextViewCoordinator, TextViewDelegate {
402402
}
403403

404404
private func isInsideProtectedContext(_ text: NSString, at position: Int) -> Bool {
405-
let scanStart = max(0, position - 2000)
405+
let scanStart = max(0, position - 2_000)
406406
var inSingleQuote = false
407407
var inDoubleQuote = false
408408
var inBacktick = false

0 commit comments

Comments
 (0)