Skip to content

Commit

Permalink
Fix typo in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio authored Apr 2, 2020
1 parent e5d8c4f commit c4e1c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LichessTournamentAggregator/TournamentAggregator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private async Task<IEnumerable<TournamentResult>> GetTournamentResults(Uri url)
var response = await client.GetAsync(url).ConfigureAwait(false);
if (response.StatusCode != HttpStatusCode.OK)
{
throw new ArgumentException("The following tournament url doesn't seem exist",
throw new ArgumentException("The following tournament url doesn't seem to exist",
$"{url.OriginalString.Replace("/results", string.Empty)}");
}

Expand Down

0 comments on commit c4e1c54

Please sign in to comment.