Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 24e3697

Browse files
committed
Fix typo.
1 parent 80146c2 commit 24e3697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.Api/ApiClientConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ static string GetMachineIdentifier()
6363
try
6464
{
6565
// adapted from http://stackoverflow.com/a/1561067
66-
var fastedValidNetworkInterface = NetworkInterface.GetAllNetworkInterfaces()
66+
var fastestValidNetworkInterface = NetworkInterface.GetAllNetworkInterfaces()
6767
.OrderByDescending(nic => nic.Speed)
6868
.Where(nic => nic.OperationalStatus == OperationalStatus.Up)
6969
.Select(nic => nic.GetPhysicalAddress().ToString())
7070
.FirstOrDefault(address => address.Length >= 12);
7171

72-
return fastedValidNetworkInterface ?? GetMachineNameSafe();
72+
return fastestValidNetworkInterface ?? GetMachineNameSafe();
7373
}
7474
catch (Exception)
7575
{

0 commit comments

Comments
 (0)