Skip to content

Commit

Permalink
Missing comma in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
aarellano committed Feb 27, 2013
1 parent e2ae6f4 commit 2ce479e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ that it does, on your command line, run `which ffmpeg`.
This will give you the path where ffmpeg is installed. For
example, it might return `/usr/local/bin/ffmpeg`.

Then, in your environment config file, let Paperclip know to look there by adding that
Then, in your environment config file, let Paperclip know to look there by adding that
directory to its path.

In development mode, you might add this line to `config/environments/development.rb)`:
Expand All @@ -38,8 +38,8 @@ In your model:

```ruby
class User < ActiveRecord::Base
has_attached_file :avatar, :styles => {
:medium => { :geometry => "640x480", :format => 'flv' }
has_attached_file :avatar, :styles => {
:medium => { :geometry => "640x480", :format => 'flv' },
:thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10 }
}, :processors => [:ffmpeg]
end
Expand Down

0 comments on commit 2ce479e

Please sign in to comment.