Commit e0cc9003 by Dan Wilson Committed by Prem Sichanugrist

Fixed incorrect mime-type in README.

parent a1e33538
...@@ -239,7 +239,7 @@ Lastly, you can also define multiple validations on a single attachment using `v ...@@ -239,7 +239,7 @@ Lastly, you can also define multiple validations on a single attachment using `v
```ruby ```ruby
validates_attachment :avatar, :presence => true, validates_attachment :avatar, :presence => true,
:content_type => { :content_type => "image/jpg" }, :content_type => { :content_type => "image/jpeg" },
:size => { :in => 0..10.kilobytes } :size => { :in => 0..10.kilobytes }
``` ```
...@@ -298,7 +298,7 @@ image-y ones: ...@@ -298,7 +298,7 @@ image-y ones:
```ruby ```ruby
validates_attachment :avatar, validates_attachment :avatar,
:content_type => { :content_type => ["image/jpg", "image/gif", "image/png"] } :content_type => { :content_type => ["image/jpeg", "image/gif", "image/png"] }
``` ```
`Paperclip::ContentTypeDetector` will attempt to match a file's extension to an `Paperclip::ContentTypeDetector` will attempt to match a file's extension to an
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment