Fix typos.

This commit is contained in:
Lucas A
2021-01-26 18:11:54 +01:00
parent a4a7f0c578
commit 9f9206726a
2 changed files with 4 additions and 4 deletions

View File

@ -66,9 +66,9 @@ namespace osu.Game.Beatmaps
protected override bool CheckStableDirectoryExists(StableStorage stableStorage) => stableStorage.GetSongStorage().ExistsDirectory(".");
protected override IEnumerable<string> GetStableImportPaths(StableStorage stableStoage)
protected override IEnumerable<string> GetStableImportPaths(StableStorage stableStorage)
{
var songStorage = stableStoage.GetSongStorage();
var songStorage = stableStorage.GetSongStorage();
return songStorage.GetDirectories(".").Select(path => songStorage.GetFullPath(path));
}