Fix typo.

This commit is contained in:
Dean Herbert
2017-04-24 19:33:48 +09:00
parent c55d406b44
commit 8b048a6706
2 changed files with 3 additions and 3 deletions

View File

@ -9,13 +9,13 @@ using osu.Game.Rulesets.Scoring;
namespace osu.Game.Online.API.Requests
{
public class GetBeatmapDeatilsRequest : APIRequest<GetBeatmapDeatilsResponse>
public class GetBeatmapDetailsRequest : APIRequest<GetBeatmapDeatilsResponse>
{
private readonly BeatmapInfo beatmap;
private string lookupString;
public GetBeatmapDeatilsRequest(BeatmapInfo beatmap)
public GetBeatmapDetailsRequest(BeatmapInfo beatmap)
{
this.beatmap = beatmap;
}