Skip to content

Commit 2894d23

Browse files
committed
Fix formatting issues.
1 parent e8b5551 commit 2894d23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sources/SwiftLexicalLookup/LookupCache.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class LookupCache {
2929
}
3030
}
3131
}
32-
32+
3333
private let capacity: Int
3434
private var evictionCount = 0
3535

Sources/SwiftLexicalLookup/Scopes/ScopeSyntax.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ extension SyntaxProtocol {
5353
guard let cache, let identifier else {
5454
return scope?.lookup(identifier, at: self.position, with: config, cache: cache) ?? []
5555
}
56-
56+
5757
let filteredResult: [LookupResult] = (scope?.lookup(nil, at: self.position, with: config, cache: cache) ?? [])
5858
.compactMap { result in
5959
switch result {

Sources/SwiftSyntax/LRUCache.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ package class LRUCache<Key: Hashable, Value> {
4343
package var count: Int {
4444
return table.count
4545
}
46-
46+
4747
package var keys: some Collection<Key> {
4848
table.keys
4949
}

0 commit comments

Comments
 (0)