Skip to content

Commit 559db23

Browse files
committed
cleanup
1 parent 2668f81 commit 559db23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GraphQL.Client/GraphQLHttpClientExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ public static IObservable<GraphQLResponse<TResponse>> CreateSubscriptionStream<T
2727
throw e;
2828
});
2929

30-
/// <inheritdoc cref="CreateSubscriptionStream{TResponse}(GraphQL.Client.Abstractions.IGraphQLClient,GraphQL.GraphQLRequest,System.Action{System.Net.WebSockets.WebSocketException})"/>
30+
/// <inheritdoc cref="CreateSubscriptionStream{TResponse}(IGraphQLClient,GraphQLRequest,Action{WebSocketException})"/>
3131
public static IObservable<GraphQLResponse<TResponse>> CreateSubscriptionStream<TResponse>(
3232
this IGraphQLClient client, GraphQLRequest request, Func<TResponse> defineResponseType, Action<WebSocketException> webSocketExceptionHandler)
3333
{
3434
_ = defineResponseType;
3535
return client.CreateSubscriptionStream<TResponse>(request, webSocketExceptionHandler);
3636
}
3737

38-
/// <inheritdoc cref="GraphQLHttpClient.CreateSubscriptionStream{TResponse}(GraphQL.GraphQLRequest)"/>
38+
/// <inheritdoc cref="GraphQLHttpClient.CreateSubscriptionStream{TResponse}(GraphQLRequest)"/>
3939
public static IObservable<GraphQLResponse<TResponse>> CreateSubscriptionStream<TResponse>(
4040
this IGraphQLClient client, GraphQLRequest request, Func<TResponse> defineResponseType)
4141
{

0 commit comments

Comments
 (0)