1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-19 07:07:18 +08:00

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;
}

View File

@ -75,7 +75,7 @@ namespace osu.Game.Screens.Select
var requestedBeatmap = beatmap;
if (requestedBeatmap.Metrics == null)
{
var lookup = new GetBeatmapDeatilsRequest(requestedBeatmap);
var lookup = new GetBeatmapDetailsRequest(requestedBeatmap);
lookup.Success += res =>
{
if (beatmap != requestedBeatmap)