Skip to content

Commit

Permalink
Change AppendLine to Append as the macAddresses variable already ha…
Browse files Browse the repository at this point in the history
…s a new line at the end.
  • Loading branch information
NevynUK committed Jan 7, 2025
1 parent 9d5dbb6 commit 9c10919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/v2/Meadow.HCom/DeviceInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public override string ToString()
{
deviceInfo.AppendLine(" MAC Address - ");
}
deviceInfo.AppendLine($"{macAddresses}");
deviceInfo.Append($"{macAddresses}");
}

deviceInfo.AppendLine();
Expand Down

0 comments on commit 9c10919

Please sign in to comment.