aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2015-01-25 13:32:54 -0800
committerZachary Scott <e@zzak.io>2015-01-25 13:32:54 -0800
commitffd495cf2131dd8b3fc1ec619c996c3002c23714 (patch)
treedbb21f6bfdc427e1eadf7aa35f9e902f88721e0c
parent77cb58ba90268c6a141cae48eb9fd8bdca4b7c13 (diff)
parent73c788dddfcdce646a59ac618face9bd259c5a9a (diff)
downloadrails-ffd495cf2131dd8b3fc1ec619c996c3002c23714.tar.gz
rails-ffd495cf2131dd8b3fc1ec619c996c3002c23714.tar.bz2
rails-ffd495cf2131dd8b3fc1ec619c996c3002c23714.zip
Merge pull request #18683 from cllns/fix-typo-in-migration-generator-comment
Fix typos in migration generator comment
-rw-r--r--railties/lib/rails/generators/migration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/migration.rb b/railties/lib/rails/generators/migration.rb
index cd388e590a..51e6d68bf0 100644
--- a/railties/lib/rails/generators/migration.rb
+++ b/railties/lib/rails/generators/migration.rb
@@ -3,8 +3,8 @@ require 'rails/generators/actions/create_migration'
module Rails
module Generators
- # Holds common methods for migrations. It assumes that migrations has the
- # [0-9]*_name format and can be used by another frameworks (like Sequel)
+ # Holds common methods for migrations. It assumes that migrations have the
+ # [0-9]*_name format and can be used by other frameworks (like Sequel)
# just by implementing the next migration version method.
module Migration
extend ActiveSupport::Concern