Skip to content

Commit 0a74581

Browse files
author
Adam Gardiner
committed
Be consistent with key names in summary
1 parent afbabc5 commit 0a74581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/csv-diff/csv_diff.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def summary
102102
unless @summary
103103
@summary = Hash.new{ |h, k| h[k] = 0 }
104104
@diffs.each{ |k, v| @summary[v[:action]] += 1 }
105-
@summary['Warnings'] = warnings.size if warnings.size > 0
105+
@summary['Warning'] = warnings.size if warnings.size > 0
106106
end
107107
@summary
108108
end

0 commit comments

Comments
 (0)