diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2017-06-03 19:23:01 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2017-06-03 19:23:01 +0530 |
commit | d357da68ff06d10bc074f84eb09b4d9144c4136f (patch) | |
tree | 126db4ee372b1656a232f3146e342d6989ddc672 /activerecord/lib/active_record | |
parent | d45a0e7163f74ca6b5e868b53868a797d1eccebf (diff) | |
download | rails-d357da68ff06d10bc074f84eb09b4d9144c4136f.tar.gz rails-d357da68ff06d10bc074f84eb09b4d9144c4136f.tar.bz2 rails-d357da68ff06d10bc074f84eb09b4d9144c4136f.zip |
[ci skip] Add missing `be`
Diffstat (limited to 'activerecord/lib/active_record')
-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 6cf8645cab..bcb939855f 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -188,7 +188,7 @@ module ActiveRecord # The name of the primary key, if one is to be added automatically. # Defaults to +id+. If <tt>:id</tt> is false, then this option is ignored. # - # If an array is passed, a composite primary key will created. + # If an array is passed, a composite primary key will be created. # # Note that Active Record models will automatically detect their # primary key. This can be avoided by using |