aboutsummaryrefslogtreecommitdiffstats
path: root/lib/csv/core_ext/array.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csv/core_ext/array.rb')
-rw-r--r--lib/csv/core_ext/array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csv/core_ext/array.rb b/lib/csv/core_ext/array.rb
index 94df7d5c35..8beb06b082 100644
--- a/lib/csv/core_ext/array.rb
+++ b/lib/csv/core_ext/array.rb
@@ -4,6 +4,6 @@ class Array # :nodoc:
# ["CSV", "data"].to_csv
# #=> "CSV,data\n"
def to_csv(**options)
- CSV.generate_line(self, options)
+ CSV.generate_line(self, **options)
end
end