diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2019-05-18 11:53:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-18 11:53:36 +0300 |
commit | da2337330689ec63309f85fb0a67d66bdcd585bc (patch) | |
tree | 05ccd5caf49212ee06e4c8a2bd89433881bb7a5e | |
parent | 1f89d432c52a357598da8a3033d31f84b92f8b8c (diff) | |
parent | 8092b3c1eed1ec869097f8f52ece9060934f0f13 (diff) | |
download | rails-da2337330689ec63309f85fb0a67d66bdcd585bc.tar.gz rails-da2337330689ec63309f85fb0a67d66bdcd585bc.tar.bz2 rails-da2337330689ec63309f85fb0a67d66bdcd585bc.zip |
Merge pull request #36263 from vishaltelangre/add-undefined-acronym
[skip ci] Add undefined STI acronym to the heading which is referred under its section
-rw-r--r-- | guides/source/association_basics.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/association_basics.md b/guides/source/association_basics.md index 62e9270539..27387ac3ac 100644 --- a/guides/source/association_basics.md +++ b/guides/source/association_basics.md @@ -2451,8 +2451,8 @@ Extensions can refer to the internals of the association proxy using these three * `proxy_association.reflection` returns the reflection object that describes the association. * `proxy_association.target` returns the associated object for `belongs_to` or `has_one`, or the collection of associated objects for `has_many` or `has_and_belongs_to_many`. -Single Table Inheritance ------------------------- +Single Table Inheritance (STI) +------------------------------ Sometimes, you may want to share fields and behavior between different models. Let's say we have Car, Motorcycle, and Bicycle models. We will want to share |