From: Federico Caselli Date: Fri, 16 Sep 2022 21:50:47 +0000 (+0200) Subject: fix documentation typos X-Git-Tag: rel_2_0_0b1~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bf27c095856937b457c42d93b8f0b5bd5420c1d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix documentation typos Closes #8527 Change-Id: I0354f3953075fa35a84b09ad45fd850d8889c992 (cherry picked from commit 02b1ed522038cbe90f9548c49ce41c29fc68032c) --- diff --git a/doc/build/changelog/changelog_13.rst b/doc/build/changelog/changelog_13.rst index aba0f4950c..6039499692 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 befd4b3160..085b60262b 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.