Skip to content

Commit 4562cc2

Browse files
authored
fix typos (#1800)
1 parent 70be2bd commit 4562cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dapper/SqlMapper.Async.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public static Task<dynamic> QuerySingleOrDefaultAsync(this IDbConnection cnn, Co
8181
/// <param name="commandTimeout">The command timeout (in seconds).</param>
8282
/// <param name="commandType">The type of command to execute.</param>
8383
/// <returns>
84-
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
84+
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
8585
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
8686
/// </returns>
8787
public static Task<IEnumerable<T>> QueryAsync<T>(this IDbConnection cnn, string sql, object param = null, IDbTransaction transaction = null, int? commandTimeout = null, CommandType? commandType = null) =>
@@ -276,7 +276,7 @@ public static Task<object> QuerySingleOrDefaultAsync(this IDbConnection cnn, Typ
276276
/// <param name="cnn">The connection to query on.</param>
277277
/// <param name="command">The command used to query on this connection.</param>
278278
/// <returns>
279-
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
279+
/// A sequence of data of <typeparamref name="T"/>; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
280280
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
281281
/// </returns>
282282
public static Task<IEnumerable<T>> QueryAsync<T>(this IDbConnection cnn, CommandDefinition command) =>

0 commit comments

Comments
 (0)