Skip to content

Commit

Permalink
fix: corrupted unicode character
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 authored Aug 29, 2023
1 parent d11ebcb commit fa540aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Chapter09/Listing09.16.OverridingToString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public override string ToString()
{
string prefix =
string.IsNullOrWhiteSpace(Name) ? string.Empty : Name + ": ";
return $"{prefix}{Degrees} {Minutes}' {Seconds}\"";
return $"{prefix}{Degrees}° {Minutes}' {Seconds}\"";
}
#endregion INCLUDE
}

0 comments on commit fa540aa

Please sign in to comment.