Skip to content

Commit

Permalink
Try to fix Ambiguous method in cref argument
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-tengler committed Apr 6, 2022
1 parent 3948b59 commit badcc39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ IQueryRequestBuilder InitializeGlobalState(
IQueryRequestBuilder SetProperties(
IDictionary<string, object?>? properties);

/// <inheritdoc cref="InitializeGlobalState" />
/// <inheritdoc cref="InitializeGlobalState(Dictionary<string, object>)" />
IQueryRequestBuilder InitializeGlobalState(
IDictionary<string, object?>? initialState);

[Obsolete("Use `InitializeGlobalState`")]
IQueryRequestBuilder SetProperties(
IReadOnlyDictionary<string, object?>? properties);

/// <inheritdoc cref="InitializeGlobalState" />
/// <inheritdoc cref="InitializeGlobalState(Dictionary<string, object>)" />
IQueryRequestBuilder InitializeGlobalState(
IReadOnlyDictionary<string, object?>? initialState);

Expand Down

0 comments on commit badcc39

Please sign in to comment.