Skip to content

Commit e47d819

Browse files
authored
Fix Typo. (#1508)
1 parent e723cee commit e47d819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dapper/SqlMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ public static dynamic QuerySingleOrDefault(this IDbConnection cnn, string sql, o
712712
/// <param name="commandTimeout">The command timeout (in seconds).</param>
713713
/// <param name="commandType">The type of command to execute.</param>
714714
/// <returns>
715-
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is
715+
/// A sequence of data of the supplied type; if a basic type (int, string, etc) is queried then the data from the first column is assumed, otherwise an instance is
716716
/// created per row, and a direct column-name===member-name mapping is assumed (case insensitive).
717717
/// </returns>
718718
public static IEnumerable<T> Query<T>(this IDbConnection cnn, string sql, object param = null, IDbTransaction transaction = null, bool buffered = true, int? commandTimeout = null, CommandType? commandType = null)

0 commit comments

Comments
 (0)