1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 13:37:25 +08:00

Fixed small typo.

This commit is contained in:
FreezyLemon 2017-12-08 12:54:36 +01:00
parent 5330ca1fa9
commit 856b56d79c
2 changed files with 2 additions and 2 deletions

View File

@ -382,7 +382,7 @@ namespace osu.Game.Overlays.Profile
}
tryAddInfoRightLine(FontAwesome.fa_map_marker, user.Location);
tryAddInfoRightLine(FontAwesome.fa_heart_o, user.Intrerests);
tryAddInfoRightLine(FontAwesome.fa_heart_o, user.Interests);
tryAddInfoRightLine(FontAwesome.fa_suitcase, user.Occupation);
infoTextRight.NewParagraph();
if (!string.IsNullOrEmpty(user.Twitter))

View File

@ -75,7 +75,7 @@ namespace osu.Game.Users
public bool Active;
[JsonProperty(@"interests")]
public string Intrerests;
public string Interests;
[JsonProperty(@"occupation")]
public string Occupation;