Skip to content

Commit 8dd21f1

Browse files
more rename
1 parent 706127e commit 8dd21f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ export function getDelimiterOccurrences(
3838
]),
3939
);
4040

41-
const matchIterator = matchAllIterator(
41+
const regexMatches = matchAllIterator(
4242
document.getText(),
4343
getDelimiterRegex(individualDelimiters),
4444
);
4545

4646
const results: DelimiterOccurrence[] = [];
4747

48-
for (const match of matchIterator) {
48+
for (const match of regexMatches) {
4949
const text = match[0];
5050
const range = new Range(
5151
document.positionAt(match.index!),

0 commit comments

Comments
 (0)