diff options
author | HoonCheol Shin <36983960+hunhoon21@users.noreply.github.com> | 2023-04-24 00:37:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-23 17:37:10 +0200 |
commit | 32a17e60ba63f0278a754e1ab7e9ebf9460e07c5 (patch) | |
tree | 6f1d269029fd0d536233a936e33529c48614a125 | |
parent | 7bfeb1b14b9a6560be15093c93a5e084e8735b62 (diff) | |
download | sqlalchemy-32a17e60ba63f0278a754e1ab7e9ebf9460e07c5.tar.gz |
:pencil2: Fix repetition for same reference page on documentation (#9694)
* :pencil2: remove repeat for same reference
* :pencil2: apply the suggestion from @zzzeek
-rw-r--r-- | doc/build/orm/inheritance.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index f54506b0a..6746a0cda 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -258,9 +258,8 @@ loads against a join of the ``employee`` and ``manager`` tables together. Loading Joined Inheritance Mappings +++++++++++++++++++++++++++++++++++ -See the sections :ref:`inheritance_loading_toplevel` and -:ref:`loading_joined_inheritance` for background on inheritance -loading techniques, including configuration of tables +See the section :ref:`inheritance_loading_toplevel` for background +on inheritance loading techniques, including configuration of tables to be queried both at mapper configuration time as well as query time. .. _single_inheritance: |