Skip to content

Commit 55a900d

Browse files
sampatbadhenobu
authored andcommitted
[ruby/csv] Fix typos (ruby/csv#236)
ruby/csv@d5e401266f
1 parent 81c57ae commit 55a900d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/csv/options/generating/write_headers.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Without +write_headers+:
1919

2020
With +write_headers+":
2121
CSV.open(file_path,'w',
22-
:write_headers=> true,
22+
:write_headers => true,
2323
:headers => ['Name','Value']
2424
) do |csv|
2525
csv << ['foo', '0']

doc/csv/recipes/generating.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ This example defines and uses a custom write converter to strip whitespace from
146146

147147
==== Recipe: Specify Multiple Write Converters
148148

149-
Use option <tt>:write_converters</tt> and multiple custom coverters
149+
Use option <tt>:write_converters</tt> and multiple custom converters
150150
to convert field values when generating \CSV.
151151

152152
This example defines and uses two custom write converters to strip and upcase generated fields:

0 commit comments

Comments
 (0)