aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-06-29 16:52:20 -0700
committerVipul A M <vipulnsward@gmail.com>2016-06-29 16:53:28 -0700
commit2dfcc87736755d5a23b528416edd00fe2586830e (patch)
treef7a03469ffd6a6d89ae4709a0017bea7b7b42656
parent3d252a02ae7f17f94401fe206f4ffc1922610d6f (diff)
downloadrails-2dfcc87736755d5a23b528416edd00fe2586830e.tar.gz
rails-2dfcc87736755d5a23b528416edd00fe2586830e.tar.bz2
rails-2dfcc87736755d5a23b528416edd00fe2586830e.zip
Pass over Upgrading guide [ci skip]
-rw-r--r--guides/source/upgrading_ruby_on_rails.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 1adff4c51e..c4d4fa246b 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -162,7 +162,7 @@ it.
### Use bin/rails for running tasks and tests
Rails 5 adds the ability to run tasks and tests through `bin/rails` instead of rake. Generally
-these changes are in paralell with rake, but some were ported over altogether.
+these changes are in parallel with rake, but some were ported over altogether.
To use the new test runner simply type `bin/rails test`.
@@ -175,7 +175,7 @@ Run `bin/rails` to see the list of commands available.
Calling `params` in your application will now return an object instead of a hash. If your
parameters are already permitted you will not need to make any changes. If you are using slice
and other methods that depend on being able to read the hash regardless of `permitted?` you will
-need to ugrade your application to first permit and then convert to a hash.
+need to upgrade your application to first permit and then convert to a hash.
params.permit([:proceed_to, :return_to]).to_h
@@ -259,7 +259,7 @@ should support caching.
## Configure the output of `db:structure:dump`
If you're using `schema_search_path` or other PostgreSQL extentions, you can control how the schema is
-dumped. Set to `:all` to generate all dumps, or `:schema_search_path` to generate from schame search path.
+dumped. Set to `:all` to generate all dumps, or `:schema_search_path` to generate from schema search path.
config.active_record.dump_schemas = :all