Skip to content

Commit

Permalink
Fix test client sub methods docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragemil committed Sep 28, 2023
1 parent f9f1b44 commit 8bc8638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publisher/src/LeanCode.Pipe.TestClient/LeanPipeTestClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public LeanPipeTestClient(
);
}

/// <returns>Unsubscription result, otherwise null if it times out.</returns>
/// <returns>Unsubscription result or null if the request times out.</returns>
public async Task<SubscriptionResult?> UnsubscribeAsync<TTopic>(
TTopic topic,
CancellationToken ct = default
Expand All @@ -92,7 +92,7 @@ public LeanPipeTestClient(
}

/// <remarks>Connects if there is no active connection.</remarks>
/// <returns>Subscription result, otherwise null if it times out.</returns>
/// <returns>Subscription result or null if the request times out.</returns>
public async Task<SubscriptionResult?> SubscribeAsync<TTopic>(
TTopic topic,
CancellationToken ct = default
Expand Down

0 comments on commit 8bc8638

Please sign in to comment.