Skip to content

Commit

Permalink
fix wrong handler return type
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Dec 16, 2023
1 parent 0db9fc3 commit c1c77d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DragonFruit.Data/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public string UserAgent
public SerializerResolver Serializers { get; }

/// <summary>
/// User-Controlled method to create a <see cref="HttpClientHandler"/>
/// User-Controlled method to create a <see cref="HttpMessageHandler"/>
/// </summary>
public Func<HttpClientHandler> Handler { get; set; }
public Func<HttpMessageHandler> Handler { get; set; }

/// <summary>
/// Gets the header container for the underlying <see cref="HttpClient"/>
Expand Down

0 comments on commit c1c77d1

Please sign in to comment.