aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/migration.rb
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-27 21:14:58 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-27 21:14:58 +0530
commitb0ac116a965db7a84758da42350e7a328c94a50d (patch)
tree16ae52d3fbadb2b3ec6f79becf51a4f86731b639 /activerecord/lib/active_record/migration.rb
parent2a0534345cffb3ad8d3a082f622b8b3d4c290601 (diff)
downloadrails-b0ac116a965db7a84758da42350e7a328c94a50d.tar.gz
rails-b0ac116a965db7a84758da42350e7a328c94a50d.tar.bz2
rails-b0ac116a965db7a84758da42350e7a328c94a50d.zip
Fixed typos in activerecord
Diffstat (limited to 'activerecord/lib/active_record/migration.rb')
-rw-r--r--activerecord/lib/active_record/migration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index 27d37766b7..d3edcf3cdb 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -102,7 +102,7 @@ module ActiveRecord
# table definition.
# * <tt>drop_table(name)</tt>: Drops the table called +name+.
# * <tt>change_table(name, options)</tt>: Allows to make column alterations to
- # the table called +name+. It makes the table object availabe to a block that
+ # the table called +name+. It makes the table object available to a block that
# can then add/remove columns, indexes or foreign keys to it.
# * <tt>rename_table(old_name, new_name)</tt>: Renames the table called +old_name+
# to +new_name+.