diff options
author | Xavier Noria <fxn@hashref.com> | 2013-02-19 17:56:36 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-02-19 18:11:10 +0100 |
commit | 26eb1e4e7031609ea1a1c4d8196fbf3a13078172 (patch) | |
tree | 04526d977d90ca4549ec6ebf39bcffda820283ec /guides/source | |
parent | b7491249d265a1176385101e5cf418c48379de97 (diff) | |
download | rails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.tar.gz rails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.tar.bz2 rails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.zip |
fixes a typo in the migrations guide
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/migrations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md index cefbc3b829..c4fbae8925 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -444,7 +444,7 @@ class ExampleMigration < ActiveRecord::Migration end ``` -Using `reversible` will insure that the instructions are executed in the +Using `reversible` will ensure that the instructions are executed in the right order too. If the previous example migration is reverted, the `down` block will be run after the `home_page_url` column is removed and right before the table `products` is dropped. |