From: Federico Caselli Date: Fri, 16 Sep 2022 21:50:47 +0000 (+0200) Subject: fix documentation typos X-Git-Tag: rel_1_4_42~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02b1ed522038cbe90f9548c49ce41c29fc68032c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix documentation typos Closes #8527 Change-Id: I0354f3953075fa35a84b09ad45fd850d8889c992 --- diff --git a/doc/build/changelog/changelog_13.rst b/doc/build/changelog/changelog_13.rst index 00c67ea3bc..629387ff97 100644 --- a/doc/build/changelog/changelog_13.rst +++ b/doc/build/changelog/changelog_13.rst @@ -2681,7 +2681,7 @@ Fixed bug where the :attr:`_orm.Mapper.all_orm_descriptors` accessor would return an entry for the :class:`_orm.Mapper` itself under the declarative - ``__mapper___`` key, when this is not a descriptor. The ``.is_attribute`` + ``__mapper__`` key, when this is not a descriptor. The ``.is_attribute`` flag that's present on all :class:`.InspectionAttr` objects is now consulted, which has also been modified to be ``True`` for an association proxy, as it was erroneously set to False for this object. diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index 060d964a14..5a267ebd0d 100644 --- a/doc/build/changelog/changelog_14.rst +++ b/doc/build/changelog/changelog_14.rst @@ -3175,7 +3175,7 @@ This document details individual issue-level changes made throughout ``@validates`` validator function or a ``@reconstructor`` reconstruction function, to check for "callable" more liberally such as to accommodate objects based on fundamental attributes like ``__func__`` and - ``__call___``, rather than testing for ``MethodType`` / ``FunctionType``, + ``__call__``, rather than testing for ``MethodType`` / ``FunctionType``, allowing things like cython functions to work properly. Pull request courtesy Miłosz Stypiński. diff --git a/doc/build/orm/composites.rst b/doc/build/orm/composites.rst index 69fc93622b..181993db5c 100644 --- a/doc/build/orm/composites.rst +++ b/doc/build/orm/composites.rst @@ -144,7 +144,7 @@ the same expression that the base "greater than" does:: class Vertex(Base): - ___tablename__ = "vertices" + __tablename__ = "vertices" id = Column(Integer, primary_key=True) x1 = Column(Integer)