Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
arthrp committed Dec 8, 2024
1 parent 03104c4 commit 7cfe144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RqliteDotnet/RqliteClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class RqliteClient : IRqliteClient
/// </summary>
/// <param name="uri">URI where rqlite instance is running</param>
/// <param name="client">Http client to use instead of default one</param>
/// <param name="basicAuthInfo">Basic auth string (username:password) that is base64 encoded and sent in Authorization header. If empty the header is not set</param>
/// <param name="basicAuthInfo">Basic auth string (username:password) that is base64 encoded and sent in Authorization header. If empty the header is not sent</param>
public RqliteClient(string uri, HttpClient? client = null, string basicAuthInfo = "")
{
_httpClient = client ?? new HttpClient(){ BaseAddress = new Uri(uri) };
Expand Down

0 comments on commit 7cfe144

Please sign in to comment.