Commit bff82b69 by Jon Moss

Merge pull request #2032 from lemuelbarango/fix_typo

Fixed typos
parents 292415d4 835a848a
...@@ -163,7 +163,7 @@ gem "paperclip", git: "git://github.com/thoughtbot/paperclip.git" ...@@ -163,7 +163,7 @@ gem "paperclip", git: "git://github.com/thoughtbot/paperclip.git"
If you're trying to use features that don't seem to be in the latest released gem, but are If you're trying to use features that don't seem to be in the latest released gem, but are
mentioned in this README, then you probably need to specify the master branch if you want to mentioned in this README, then you probably need to specify the master branch if you want to
use them. This README is probably ahead of the latest released version, if you're reading it use them. This README is probably ahead of the latest released version if you're reading it
on GitHub. on GitHub.
For Non-Rails usage: For Non-Rails usage:
...@@ -568,7 +568,7 @@ gems along side with Paperclip: ...@@ -568,7 +568,7 @@ gems along side with Paperclip:
The files that are assigned as attachments are, by default, placed in the The files that are assigned as attachments are, by default, placed in the
directory specified by the `:path` option to `has_attached_file`. By default, this directory specified by the `:path` option to `has_attached_file`. By default, this
location is `:rails_root/public/system/:class/:attachment/:id_partition/:style/:filename`. location is `:rails_root/public/system/:class/:attachment/:id_partition/:style/:filename`.
This location was chosen because on standard Capistrano deployments, the This location was chosen because, on standard Capistrano deployments, the
`public/system` directory is symlinked to the app's shared directory, meaning it `public/system` directory is symlinked to the app's shared directory, meaning it
will survive between deployments. For example, using that `:path`, you may have a will survive between deployments. For example, using that `:path`, you may have a
file at file at
...@@ -624,7 +624,7 @@ This would load the hypothetical class Paperclip::Ocr, which would have the ...@@ -624,7 +624,7 @@ This would load the hypothetical class Paperclip::Ocr, which would have the
hash "{ quality: :better }" passed to it along with the uploaded file. For hash "{ quality: :better }" passed to it along with the uploaded file. For
more information about defining processors, see Paperclip::Processor. more information about defining processors, see Paperclip::Processor.
The default processor is Paperclip::Thumbnail. For backwards compatibility The default processor is Paperclip::Thumbnail. For backward compatibility
reasons, you can pass a single geometry string or an array containing a reasons, you can pass a single geometry string or an array containing a
geometry and a format that the file will be converted to, like so: geometry and a format that the file will be converted to, like so:
...@@ -819,7 +819,7 @@ end ...@@ -819,7 +819,7 @@ end
Logging Logging
---------- ----------
By default Paperclip outputs logging according to your logger level. If you want to disable logging (e.g. during testing) add this in to your environment's configuration: By default, Paperclip outputs logging according to your logger level. If you want to disable logging (e.g. during testing) add this into your environment's configuration:
```ruby ```ruby
Your::Application.configure do Your::Application.configure do
... ...
......
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