From 26eb1e4e7031609ea1a1c4d8196fbf3a13078172 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Tue, 19 Feb 2013 17:56:36 +0100 Subject: [PATCH] fixes a typo in the migrations guide --- guides/source/migrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- GitLab