Skip to content

Commit

Permalink
[ruby/csv] Fix typos (ruby/csv#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampatbadhe authored and nobu committed May 24, 2023
1 parent 81c57ae commit 55a900d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/csv/options/generating/write_headers.rdoc
Expand Up @@ -19,7 +19,7 @@ Without +write_headers+:

With +write_headers+":
CSV.open(file_path,'w',
:write_headers=> true,
:write_headers => true,
:headers => ['Name','Value']
) do |csv|
csv << ['foo', '0']
Expand Down
2 changes: 1 addition & 1 deletion doc/csv/recipes/generating.rdoc
Expand Up @@ -146,7 +146,7 @@ This example defines and uses a custom write converter to strip whitespace from

==== Recipe: Specify Multiple Write Converters

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

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

0 comments on commit 55a900d

Please sign in to comment.