aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJanko Marohnić <janko.marohnic@gmail.com>2018-04-23 21:06:06 +0200
committerJanko Marohnić <janko.marohnic@gmail.com>2018-04-23 21:06:06 +0200
commit7e4ad3f13daa227d4cbf860dbc5399ddb807a35b (patch)
tree3ca616a36ab5113195edb952ea2af1c815e0fa2c /guides
parenteef0bd0c0a4da52a111639cb9fb5823057cbdf27 (diff)
downloadrails-7e4ad3f13daa227d4cbf860dbc5399ddb807a35b.tar.gz
rails-7e4ad3f13daa227d4cbf860dbc5399ddb807a35b.tar.bz2
rails-7e4ad3f13daa227d4cbf860dbc5399ddb807a35b.zip
Correct typos
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_storage_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md
index 8f723e1e9f..4a915b1083 100644
--- a/guides/source/active_storage_overview.md
+++ b/guides/source/active_storage_overview.md
@@ -338,11 +338,11 @@ Transforming Images
-------------------
To create variation of the image, call `variant` on the Blob. You can pass
-any transformation to the method supported by the procecssor. The default
+any transformation to the method supported by the processor. The default
processor is [MiniMagick](https://github.com/minimagick/minimagick), but you
can also use [Vips](http://www.rubydoc.info/gems/ruby-vips/Vips/Image).
-To enable variants, add `image_processing` gem to your `Gemfile`:
+To enable variants, add the `image_processing` gem to your `Gemfile`:
```ruby
gem 'image_processing', '~> 1.2'