Skip to content

Commit a12b971

Browse files
fix linter
1 parent 33394b6 commit a12b971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ydb.Sdk/src/Topic/IWriter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public interface IWriter<TValue> : IAsyncDisposable
1313
/// A Task which will complete with a delivery report corresponding to the produce request,
1414
/// or an exception if an error occured.
1515
/// </returns>
16-
/// <exception cref="T:Ydb.Sdk.Services.Topic.WriterException">
16+
/// <exception cref="Ydb.Sdk.Topic.WriterException">
1717
/// Thrown in response to any write request that was unsuccessful for any reason.
1818
/// </exception>
1919
public Task<WriteResult> WriteAsync(TValue data, CancellationToken cancellationToken = default);
@@ -27,7 +27,7 @@ public interface IWriter<TValue> : IAsyncDisposable
2727
/// A Task which will complete with a delivery report corresponding to the produce request,
2828
/// or an exception if an error occured.
2929
/// </returns>
30-
/// <exception cref="T:Ydb.Sdk.Services.Topic.WriterException">
30+
/// <exception cref="Ydb.Sdk.Topic.WriterException">
3131
/// Thrown in response to any write request that was unsuccessful for any reason.
3232
/// </exception>
3333
public Task<WriteResult> WriteAsync(Message<TValue> message, CancellationToken cancellationToken = default);

0 commit comments

Comments
 (0)