We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55ac62f commit fe52e10Copy full SHA for fe52e10
src/SIL.Machine/PunctuationAnalysis/QuotationMarkTabulator.cs
@@ -82,13 +82,13 @@ QuotationMarkCounts otherCounts
82
if (
83
!_quotationCountsByDepthAndDirection.TryGetValue(
84
(depth, direction),
85
- out QuotationMarkCounts currentCounts
+ out QuotationMarkCounts thisCounts
86
)
87
88
{
89
- currentCounts = new QuotationMarkCounts();
+ thisCounts = new QuotationMarkCounts();
90
}
91
- currentCounts.CountFrom(otherCounts);
+ thisCounts.CountFrom(otherCounts);
92
93
94
0 commit comments