Skip to content

Commit

Permalink
fixed typo mistake in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Kumaresan C committed Jan 28, 2015
1 parent 7cf441d commit d31669f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Currently the gem supports retrieving a CSV accessible from a URL, File, or an I
require 'csvlint'

validator = Csvlint::Validator.new( "http://example.org/data.csv" )
validator = Csvlint::Validator.new( File.new("/path/to/my/data.csv" )
validator = Csvlint::Validator.new( File.new("/path/to/my/data.csv" ))
validator = Csvlint::Validator.new( StringIO.new( my_data_in_a_string ) )

When validating from a URL the range of errors and warnings is wider as the library will also check HTTP headers for
Expand Down

0 comments on commit d31669f

Please sign in to comment.