aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
diff options
context:
space:
mode:
authorR.T. Lechow <rtlechow@gmail.com>2011-03-03 23:54:58 -0500
committerXavier Noria <fxn@hashref.com>2011-03-05 11:56:34 +0100
commita1b4d8e7b277ddcfba6c31cbb9245025123cf04b (patch)
tree33de6503bbbfcb849fbb903531123748422387cb /activerecord/test/cases/migration_test.rb
parent273700cbd0f8e9013fd4b4a33ab310e4ac02ff62 (diff)
downloadrails-a1b4d8e7b277ddcfba6c31cbb9245025123cf04b.tar.gz
rails-a1b4d8e7b277ddcfba6c31cbb9245025123cf04b.tar.bz2
rails-a1b4d8e7b277ddcfba6c31cbb9245025123cf04b.zip
Active Record typos.
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r--activerecord/test/cases/migration_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index 9d7c49768b..bf7565a0d0 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -543,7 +543,7 @@ if ActiveRecord::Base.connection.supports_migrations?
assert_equal "I was born ....", bob.bio
assert_equal 18, bob.age
- # Test for 30 significent digits (beyond the 16 of float), 10 of them
+ # Test for 30 significant digits (beyond the 16 of float), 10 of them
# after the decimal place.
unless current_adapter?(:SQLite3Adapter)
@@ -1975,7 +1975,7 @@ if ActiveRecord::Base.connection.supports_migrations?
t.integer :age
end
- # Adding an index fires a query everytime to check if an index already exists or not
+ # Adding an index fires a query every time to check if an index already exists or not
assert_queries(3) do
with_bulk_change_table do |t|
t.index :username, :unique => true, :name => :awesome_username_index