Skip to content

Commit

Permalink
#Rename filterBanks to FilterBanks
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriciDmarc committed Aug 24, 2023
1 parent 8fb7be0 commit 494a5c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/dotnet/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ static void Main()
Console.Write("Buscar COMPE (3 dígitos): ");
var compe = Console.ReadLine();

filterBanks(compe);
FilterBanks(compe);
}

private static void filterBanks(string compe)
private static void FilterBanks(string compe)
{
Console.Clear();

Expand Down Expand Up @@ -73,7 +73,7 @@ private static void filterBanks(string compe)
Console.Clear();
Console.Write("Buscar COMPE (3 dígitos): ");
compe = Console.ReadLine();
filterBanks(compe);
FilterBanks(compe);
}
}
}
Expand Down

0 comments on commit 494a5c7

Please sign in to comment.