diff options
author | Shivam Jain <shivam@vinsol.com> | 2019-02-24 01:03:10 +0530 |
---|---|---|
committer | Shivam Jain <shivam@vinsol.com> | 2019-02-24 01:03:10 +0530 |
commit | 8cabcccf42202058214c230722e1f6e16c1e7105 (patch) | |
tree | e0f911c132acb6c3ecb4ad28f95ed56a6401c493 /activerecord | |
parent | 24092b71152a8a2db9bf32a18ac6929f393bfdd9 (diff) | |
download | rails-8cabcccf42202058214c230722e1f6e16c1e7105.tar.gz rails-8cabcccf42202058214c230722e1f6e16c1e7105.tar.bz2 rails-8cabcccf42202058214c230722e1f6e16c1e7105.zip |
minor grammar fix [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index b202a82f55..b2cc60f363 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -852,7 +852,7 @@ module ActiveRecord # [<tt>:null</tt>] # Whether the column allows nulls. Defaults to true. # - # ====== Create a user_id bigint column without a index + # ====== Create a user_id bigint column without an index # # add_reference(:products, :user, index: false) # |