aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/migrations.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-02-19 17:56:36 +0100
committerXavier Noria <fxn@hashref.com>2013-02-19 18:11:10 +0100
commit26eb1e4e7031609ea1a1c4d8196fbf3a13078172 (patch)
tree04526d977d90ca4549ec6ebf39bcffda820283ec /guides/source/migrations.md
parentb7491249d265a1176385101e5cf418c48379de97 (diff)
downloadrails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.tar.gz
rails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.tar.bz2
rails-26eb1e4e7031609ea1a1c4d8196fbf3a13078172.zip
fixes a typo in the migrations guide
Diffstat (limited to 'guides/source/migrations.md')
-rw-r--r--guides/source/migrations.md2
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.