aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/migration.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-10-26 13:05:48 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-10-26 13:05:48 +0000
commita8eea0b04b2989bd054d7c852d636f1cc5494957 (patch)
treebff2ddce73b205a28bdfe048d74b669b92b20671 /activerecord/lib/active_record/migration.rb
parent475bd74168a611cf0aeeda42d464aff1b3dfa806 (diff)
downloadrails-a8eea0b04b2989bd054d7c852d636f1cc5494957.tar.gz
rails-a8eea0b04b2989bd054d7c852d636f1cc5494957.tar.bz2
rails-a8eea0b04b2989bd054d7c852d636f1cc5494957.zip
Fix docs (closes #2491)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2744 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/migration.rb')
-rw-r--r--activerecord/lib/active_record/migration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index fcb5ad82de..9b93366906 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -109,7 +109,7 @@ module ActiveRecord
# end
# end
#
- # And some times you need to do something in SQL not abstracted directly by migrations:
+ # And sometimes you need to do something in SQL not abstracted directly by migrations:
#
# class MakeJoinUnique < ActiveRecord::Migration
# def self.up
@@ -123,7 +123,7 @@ module ActiveRecord
#
# == Using the class after changing table
#
- # Some times you'll want to add a column in a migration and populate it immediately after. In that case, you'll need
+ # Sometimes you'll want to add a column in a migration and populate it immediately after. In that case, you'll need
# to make a call to Base#reset_column_information in order to ensure that the class has the latest column data from
# after the new column was added. Example:
#