diff options
author | Lincoln Lee <git@lincoln.hk> | 2012-10-08 16:50:56 +0800 |
---|---|---|
committer | Lincoln Lee <lincoln.lee@qipost.com> | 2012-10-08 16:50:56 +0800 |
commit | 9b1853ee4c4f730df9f1418298da1c159b55d545 (patch) | |
tree | de4ed1531fe02283a83e2c4c7dbd3733d6cb529f | |
parent | 5ee013f735a355f7409074a70fb0927b543cf4e7 (diff) | |
download | rails-9b1853ee4c4f730df9f1418298da1c159b55d545.tar.gz rails-9b1853ee4c4f730df9f1418298da1c159b55d545.tar.bz2 rails-9b1853ee4c4f730df9f1418298da1c159b55d545.zip |
Fix missing typewriter tag
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index a68663cf53..d5ee98382d 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -126,7 +126,7 @@ module ActiveRecord # with the name of the column. Other options include # <tt>:name</tt>, <tt>:unique</tt> (e.g. # <tt>{ name: 'users_name_index', unique: true }</tt>) and <tt>:order</tt> - # (e.g. { order: { name: :desc } }</tt>). + # (e.g. <tt>{ order: { name: :desc } }</tt>). # * <tt>remove_index(table_name, column: column_name)</tt>: Removes the index # specified by +column_name+. # * <tt>remove_index(table_name, name: index_name)</tt>: Removes the index |