Skip to content

Commit fe52e10

Browse files
committed
Use 'thisCounts'
1 parent 55ac62f commit fe52e10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/SIL.Machine/PunctuationAnalysis/QuotationMarkTabulator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ QuotationMarkCounts otherCounts
8282
if (
8383
!_quotationCountsByDepthAndDirection.TryGetValue(
8484
(depth, direction),
85-
out QuotationMarkCounts currentCounts
85+
out QuotationMarkCounts thisCounts
8686
)
8787
)
8888
{
89-
currentCounts = new QuotationMarkCounts();
89+
thisCounts = new QuotationMarkCounts();
9090
}
91-
currentCounts.CountFrom(otherCounts);
91+
thisCounts.CountFrom(otherCounts);
9292
}
9393
}
9494

0 commit comments

Comments
 (0)