aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-07 21:26:09 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-09-07 21:29:00 +0530
commit1678bf247f3623df7811ade72634ae2756c029aa (patch)
tree94011c5960644fd290b1e0e1bf23c06495caab57
parent92d170074c69a7fc564ec4a2e605fc322976fc9a (diff)
downloadrails-1678bf247f3623df7811ade72634ae2756c029aa.tar.gz
rails-1678bf247f3623df7811ade72634ae2756c029aa.tar.bz2
rails-1678bf247f3623df7811ade72634ae2756c029aa.zip
Typo fix [ci skip]
`lengh` should be `length`
-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