diff options
-rw-r--r-- | lib/templates/active_record/migration/create_table_migration.rb | 2 | ||||
-rw-r--r-- | 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: |