Renaming singular to plural

just for the consistency
This commit is contained in:
Harry 2014-10-07 16:08:56 -04:00
parent 5058d370df
commit f6f027845d
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ public ChartApi(IAuth auth)
Auth = auth; Auth = auth;
} }
public async Task<PageResponse<LastArtist>> GetTopArtistAsync(int page = 1, int itemsPerPage = LastFm.DefaultPageLength) public async Task<PageResponse<LastArtist>> GetTopArtistsAsync(int page = 1, int itemsPerPage = LastFm.DefaultPageLength)
{ {
var command = new GetTopArtistsCommand(Auth) var command = new GetTopArtistsCommand(Auth)
{ {

View File

@ -12,7 +12,7 @@ public interface IChartApi
{ {
IAuth Auth { get; } IAuth Auth { get; }
Task<PageResponse<LastArtist>> GetTopArtistAsync( Task<PageResponse<LastArtist>> GetTopArtistsAsync(
int page = 1, int page = 1,
int itemsPerPage = LastFm.DefaultPageLength); int itemsPerPage = LastFm.DefaultPageLength);