Merge pull request #1675 from FreezyLemon/fix-interests-typo

Fixed small typo. (User.Intrerests -> Interests)
This commit is contained in:
Dan Balasescu
2017-12-08 21:13:49 +09:00
committed by GitHub
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;