Skip to content

Commit 4fefbe2

Browse files
Update packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/SurroundingPairScopeHandler/RangeLookupTree.ts
Co-authored-by: Pokey Rule <[email protected]>
1 parent 5ecf4a1 commit 4fefbe2

File tree

1 file changed

+2
-2
lines changed
  • packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/SurroundingPairScopeHandler

1 file changed

+2
-2
lines changed

packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/SurroundingPairScopeHandler/RangeLookupTree.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ export class RangeLookupTree<T extends { range: Range }> {
1515
this.children = createNodes(items);
1616
}
1717

18-
getSmallLestContaining(separator: Range): T | undefined {
18+
getSmallestContaining(separator: Range): T | undefined {
1919
return this.children
2020
.getContaining(separator)
21-
?.getSmallLestContaining(separator);
21+
?.getSmallestContaining(separator);
2222
}
2323
}
2424

0 commit comments

Comments
 (0)