Skip to content

Commit 3873789

Browse files
Modified the XML comments
1 parent 15cfe59 commit 3873789

File tree

1 file changed

+1
-1
lines changed
  • Mail-Merge/Skip-range-of-records/Skip-range-of-records

1 file changed

+1
-1
lines changed

Mail-Merge/Skip-range-of-records/Skip-range-of-records/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/// </summary>
2626
void SkipRangeOfRecords(object sender, MergeFieldEventArgs args)
2727
{
28-
// Check if the current row index is between 3 and 9.
28+
// Check if the current row index is between 2 and 7.
2929
// If so, set the field text to an empty string, effectively skipping those records.
3030
if (args.RowIndex > 2 && args.RowIndex < 7)
3131
args.Text = string.Empty;

0 commit comments

Comments
 (0)