Skip to content

Commit

Permalink
#6 Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
skuill committed Dec 9, 2023
1 parent 8052b7c commit d517c52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LyricsScraperNET/Providers/Genius/GeniusUriConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ private string GetApiSearchQuery(string artist, string song)

public Uri GetLyricUri(string artist, string song)
=> new Uri(string.Format(GeniusApiSearchFormat, GetApiSearchQuery(artist, song)));

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public Uri GetLyricUri(string artist, string song)
{
var artistFormatted = artist.ToLowerInvariant().СonvertToDashedFormat();
var songFormatted = song.ToLowerInvariant().СonvertToDashedFormat();

return new Uri(string.Format(uriPathFormat, artistFormatted, songFormatted));
}
}
Expand Down

0 comments on commit d517c52

Please sign in to comment.