]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix documentation typos
authorFederico Caselli <cfederico87@gmail.com>
Fri, 16 Sep 2022 21:50:47 +0000 (23:50 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Fri, 16 Sep 2022 21:51:52 +0000 (23:51 +0200)
Closes #8527
Change-Id: I0354f3953075fa35a84b09ad45fd850d8889c992

(cherry picked from commit 02b1ed522038cbe90f9548c49ce41c29fc68032c)

doc/build/changelog/changelog_13.rst
doc/build/changelog/changelog_14.rst

index aba0f4950cab8d7b113f16adce052b6cf0e79410..603949969210ad0ad5c0c697d066c70ce085e4f4 100644 (file)
 
         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.
index befd4b3160c712a276aa1a85bb93f195b52ff508..085b60262b1103bc244cea6a463f956a8f49676f 100644 (file)
@@ -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.