summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2016-05-19 10:05:39 -0500
committerYorick Peterse <yorickpeterse@gmail.com>2016-05-19 10:05:39 -0500
commit7e7764139d171ceeee5200b2677bdab0f8ab7c2d (patch)
tree0c2fe35eb249ed0d28ae7b53388b481fa2fa98f5
parent59640866cee3d80a2144cb1992de36ba6678d4f7 (diff)
downloadgitlab-ce-migration-helpers.tar.gz
Fixed typos in migration templatesmigration-helpers
-rw-r--r--lib/templates/active_record/migration/create_table_migration.rb2
-rw-r--r--lib/templates/active_record/migration/migration.rb2
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: