@@ -655,7 +655,7 @@ public static List<DataTable> ToDataTables(this IDbCommand command, CommandBehav
655655 /// Iterates an IDataReader while the predicate returns true.
656656 /// </summary>
657657 /// <param name="reader">The IDataReader to iterate.</param>
658- /// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
658+ /// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
659659 public static void IterateWhile ( this IDataReader reader , Func < IDataRecord , bool > predicate )
660660 {
661661 while ( reader . Read ( ) && predicate ( reader ) ) { }
@@ -778,7 +778,7 @@ internal static IEnumerable<object[]> IterateReaderInternal(IDbCommand command,
778778 /// Iterates an IDataReader on a command while the predicate returns true.
779779 /// </summary>
780780 /// <param name="command">The IDbCommand to generate a reader from.</param>
781- /// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
781+ /// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
782782 /// <param name="behavior">The command behavior for once the command the reader is complete.</param>
783783 public static void IterateReaderWhile ( this IDbCommand command , Func < IDataRecord , bool > predicate , CommandBehavior behavior = CommandBehavior . Default )
784784 {
@@ -814,7 +814,7 @@ public static async Task ForEachAsync(this DbCommand command, Action<IDataRecord
814814 /// Asynchronously iterates an IDataReader on a command while the predicate returns true.
815815 /// </summary>
816816 /// <param name="command">The DbCommand to generate a reader from.</param>
817- /// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
817+ /// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
818818 /// <param name="behavior">The command behavior for once the command the reader is complete.</param>
819819 public static async Task IterateReaderAsyncWhile ( this DbCommand command , Func < IDataRecord , bool > predicate , CommandBehavior behavior = CommandBehavior . Default )
820820 {
@@ -826,7 +826,7 @@ public static async Task IterateReaderAsyncWhile(this DbCommand command, Func<ID
826826 /// Asynchronously iterates an IDataReader on a command while the predicate returns true.
827827 /// </summary>
828828 /// <param name="command">The DbCommand to generate a reader from.</param>
829- /// <param name="predicate">The hanlder function that processes each IDataRecord and decides if iteration should continue.</param>
829+ /// <param name="predicate">The handler function that processes each IDataRecord and decides if iteration should continue.</param>
830830 /// <param name="behavior">The command behavior for once the command the reader is complete.</param>
831831 public static async Task IterateReaderAsyncWhile ( this DbCommand command , Func < IDataRecord , Task < bool > > predicate , CommandBehavior behavior = CommandBehavior . Default )
832832 {
0 commit comments