Skip to content

Commit

Permalink
Prefer var
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorPilley committed Sep 11, 2023
1 parent 80c3258 commit f4cec4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhoneNumbers/CountryInfo.cs
Expand Up @@ -215,7 +215,7 @@ private string ReadNationalSignificantNumber(string value, int startPos)
{
var startsWithTrunkPrefix = true;

for (int i = 0; i < TrunkPrefix.Length; i++)
for (var i = 0; i < TrunkPrefix.Length; i++)
{
if (ar[i] != TrunkPrefix[i])
{
Expand Down

0 comments on commit f4cec4e

Please sign in to comment.