Skip to content

Commit

Permalink
fix: invalid url when providing example
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhdk committed Nov 18, 2024
1 parent a1daae4 commit 3f89f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Relewise.Client.Extensions/Builders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private static string ProvideExample(string sectionName)

var configuration = new Dictionary<string, JsonConfiguration>
{
{ sectionName, new JsonConfiguration { DatasetId = Guid.Empty, ApiKey = "<ApiKey>", Timeout = TimeSpan.FromSeconds(3), ServerUrl = new Uri("<ServerUrl>")} }
{ sectionName, new JsonConfiguration { DatasetId = Guid.Empty, ApiKey = "<ApiKey>", Timeout = TimeSpan.FromSeconds(3), ServerUrl = new Uri("https://ServerUrl")} }
};

return @$"
Expand Down

0 comments on commit 3f89f38

Please sign in to comment.