]> 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:06 +0000 (16:41 -0400)
amends f9f1e8b6c5890eb17b6ba055ff563

Change-Id: I2fd6de56db82aad4d22abf5807e5849e48693124

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

index 5331efd2df2d1441abc9fd5b394b6a52a1c784aa..639681846b4c5a52baa5f959f90c36a82036adfa 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 ea01653b21e41e5848432d79e534b8e67ed986fd..a988bbb5ce9ce757fecf4edae6c05298c7c83231 100644 (file)
@@ -511,7 +511,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,