fixes a typo in the migrations guide

This commit is contained in:
Xavier Noria 2013-02-19 17:56:36 +01:00
parent b7491249d2
commit 26eb1e4e70

@ -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.