]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
post-edits for ORM rework
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Jun 2022 20:41:06 +0000 (16:41 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Jun 2022 20:41:48 +0000 (16:41 -0400)
amends f9f1e8b6c5890eb17b6ba055ff563

Change-Id: I2fd6de56db82aad4d22abf5807e5849e48693124
(cherry picked from commit 8fe6a3fa550f18068e7566e25a9e96f60a186430)

doc/build/orm/dataclasses.rst
doc/build/orm/declarative_tables.rst
doc/build/orm/mapping_styles.rst

index 4c1c91285e1f65c0fcd8f96ae64bcbc2439a0d4c..fa37e011e58fa9a73da257481125a16d24d98128 100644 (file)
@@ -360,7 +360,7 @@ The SQLAlchemy ORM supports mapping an attrs_ class using **Declarative with
 Imperative Table** or **Imperative** mapping. The general form of these two
 styles is fully equivalent to the
 :ref:`orm_declarative_dataclasses_declarative_table` and
-:ref:`orm_declarative_attrs_imperative_table` mapping forms used with
+:ref:`orm_declarative_dataclasses_imperative_table` mapping forms used with
 dataclasses, where the inline attribute directives used by dataclasses or attrs
 are unchanged, and SQLAlchemy's table-oriented instrumentation is applied at
 runtime.
index b8804a21d58b9439ab256860128237b6aae49756..dad145c42f578ac9bc7f3ba5f6c70f681bf28db3 100644 (file)
@@ -192,7 +192,7 @@ Appending additional columns to an existing Declarative mapped class
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 A declarative table configuration allows the addition of new
-:class:`_schema.Column` objects an existing mapping after the :class:`.Table`
+:class:`_schema.Column` objects to an existing mapping after the :class:`.Table`
 metadata has already been generated.
 
 For a declarative class that is declared using a declarative base class,
index edacadf71d1f2332620aefb76852cc52ef74a427..1b33aa2e29f0cfb5abadb26219f1ea77b48770c5 100644 (file)
@@ -517,7 +517,6 @@ as well as specific history on modifications to attributes since the last flush:
 
 
 .. _dataclasses: https://docs.python.org/3/library/dataclasses.html
-.. _attrs: https://pypi.org/project/attrs/
 
 .. [1] When running under Python 2, a Python 2 "old style" class is the only
        kind of class that isn't compatible.    When running code on Python 2,