diff --git a/lib/templates/active_record/migration/create_table_migration.rb b/lib/templates/active_record/migration/create_table_migration.rb
index 4b7e39e057f8e5177c70e5c58b04b99055fd9c8c..27acc75dcc433d9980e92871bdc035af80044c3a 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 ae88593cd12af3a3bc21c85251316b9614a74334..06bdea113670ab16b0370f222bd02ab5fc42b3d1 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: