From 7e7764139d171ceeee5200b2677bdab0f8ab7c2d Mon Sep 17 00:00:00 2001 From: Yorick Peterse <yorickpeterse@gmail.com> Date: Thu, 19 May 2016 10:05:39 -0500 Subject: [PATCH] Fixed typos in migration templates --- lib/templates/active_record/migration/create_table_migration.rb | 2 +- lib/templates/active_record/migration/migration.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/templates/active_record/migration/create_table_migration.rb b/lib/templates/active_record/migration/create_table_migration.rb index 4b7e39e057f..27acc75dcc4 100644 --- a/lib/templates/active_record/migration/create_table_migration.rb +++ b/lib/templates/active_record/migration/create_table_migration.rb @@ -9,7 +9,7 @@ class <%= migration_class_name %> < ActiveRecord::Migration # existing transaction. When using "add_concurrent_index" make sure that this # method is the _only_ method called in the migration, any other changes # should go in a separate migration. This ensures that upon failure _only_ the - # index creation failes and can be re-tried or reverted easily. + # index creation fails and can be retried or reverted easily. # # To disable transactions uncomment the following line and remove these # comments: diff --git a/lib/templates/active_record/migration/migration.rb b/lib/templates/active_record/migration/migration.rb index ae88593cd12..06bdea11367 100644 --- a/lib/templates/active_record/migration/migration.rb +++ b/lib/templates/active_record/migration/migration.rb @@ -9,7 +9,7 @@ class <%= migration_class_name %> < ActiveRecord::Migration # existing transaction. When using "add_concurrent_index" make sure that this # method is the _only_ method called in the migration, any other changes # should go in a separate migration. This ensures that upon failure _only_ the - # index creation failes and can be re-tried or reverted easily. + # index creation fails and can be retried or reverted easily. # # To disable transactions uncomment the following line and remove these # comments: -- GitLab