Skip to content

Commit a462f9f

Browse files
committed
[ksqlDb.RestApi.Client]: improved KSqlDBContext.CreatePullQuery doc strings
1 parent 19b92af commit a462f9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ksqlDb.RestApi.Client/KSql/Query/Context/IKSqlDBContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface IKSqlDBContext : IKSqlDBStatementsContext, IAsyncDisposable, ID
3030
/// </summary>
3131
/// <typeparam name="TEntity">The type of the data in the data source.</typeparam>
3232
/// <param name="tableName">Overrides the name of the table which by default is derived from TEntity</param>
33-
/// <returns>An IPullable for query composition and execution.</returns>
33+
/// <returns>An <see cref="IPullable{TEntity}"/> for query composition and execution.</returns>
3434
IPullable<TEntity> CreatePullQuery<TEntity>(string? tableName = null);
3535

3636
/// <summary>

ksqlDb.RestApi.Client/KSql/Query/Context/KSqlDBContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ private WithOrAsClause CreateStatement(string fromItemName, CreationType creatio
189189
/// </summary>
190190
/// <typeparam name="TEntity">The type of the data in the data source.</typeparam>
191191
/// <param name="tableName">Overrides the name of the table which by default is derived from TEntity</param>
192-
/// <returns>An IPullable for query composition and execution.</returns>
192+
/// <returns>An <see cref="IPullable{TEntity}"/> for query composition and execution.</returns>
193193
public IPullable<TEntity> CreatePullQuery<TEntity>(string? tableName = null)
194194
{
195195
var serviceScopeFactory = ServiceScopeFactory();

0 commit comments

Comments
 (0)