aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-09-07 18:04:37 +0200
committerArun Agrawal <arunagw@gmail.com>2015-09-07 18:04:37 +0200
commit2cc6f6b7f178944d5c5f08b619193ee4e5a29ae4 (patch)
tree94011c5960644fd290b1e0e1bf23c06495caab57
parent92d170074c69a7fc564ec4a2e605fc322976fc9a (diff)
parent1678bf247f3623df7811ade72634ae2756c029aa (diff)
downloadrails-2cc6f6b7f178944d5c5f08b619193ee4e5a29ae4.tar.gz
rails-2cc6f6b7f178944d5c5f08b619193ee4e5a29ae4.tar.bz2
rails-2cc6f6b7f178944d5c5f08b619193ee4e5a29ae4.zip
Merge pull request #21531 from amitsuroliya/typo_fix1
Typo fix (ci skip)
-rw-r--r--activerecord/test/models/face.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/models/face.rb b/activerecord/test/models/face.rb
index 91e46f83e5..af76fea52c 100644
--- a/activerecord/test/models/face.rb
+++ b/activerecord/test/models/face.rb
@@ -1,7 +1,7 @@
class Face < ActiveRecord::Base
belongs_to :man, :inverse_of => :face
belongs_to :polymorphic_man, :polymorphic => true, :inverse_of => :polymorphic_face
- # Oracle identifier lengh is limited to 30 bytes or less, `polymorphic` renamed `poly`
+ # Oracle identifier length is limited to 30 bytes or less, `polymorphic` renamed `poly`
belongs_to :poly_man_without_inverse, :polymorphic => true
# These is a "broken" inverse_of for the purposes of testing
belongs_to :horrible_man, :class_name => 'Man', :inverse_of => :horrible_face