diff options
author | Lele Gaifax <lele@metapensiero.it> | 2019-01-14 11:26:33 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-25 14:56:50 -0500 |
commit | 66e88d30a86fc37e2eaf7367e988ced3834e3250 (patch) | |
tree | eaee9860ff866d88e398cb6531a988ccd8601e09 /lib/sqlalchemy/orm/mapper.py | |
parent | c9a31767e0d3a15ab45101aca21924cb4434c7b9 (diff) | |
download | sqlalchemy-66e88d30a86fc37e2eaf7367e988ced3834e3250.tar.gz |
Fix many spell glitches
This affects mostly docstrings, except in orm/events.py::dispose_collection()
where one parameter gets renamed: given that the method is
empty, it seemed reasonable to me to fix that too.
Closes: #4440
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/4440
Pull-request-sha: 779ed75acb6142e1f1daac467b5b14134529bb4b
Change-Id: Ic0553fe97853054b09c2453af76d96363de6eb0e
Diffstat (limited to 'lib/sqlalchemy/orm/mapper.py')
-rw-r--r-- | lib/sqlalchemy/orm/mapper.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py index ff5148ed1..12b8b4268 100644 --- a/lib/sqlalchemy/orm/mapper.py +++ b/lib/sqlalchemy/orm/mapper.py @@ -889,7 +889,7 @@ class Mapper(InspectionAttr): non_primary = None """Represent ``True`` if this :class:`.Mapper` is a "non-primary" - mapper, e.g. a mapper that is used only to selet rows but not for + mapper, e.g. a mapper that is used only to select rows but not for persistence management. This is a *read only* attribute determined during mapper construction. @@ -991,7 +991,7 @@ class Mapper(InspectionAttr): return PathRegistry.per_mapper(self) def _configure_inheritance(self): - """Configure settings related to inherting and/or inherited mappers + """Configure settings related to inheriting and/or inherited mappers being present.""" # a set of all mappers which inherit from this one. @@ -2339,7 +2339,7 @@ class Mapper(InspectionAttr): :class:`.Mapper` has several pre-filtered views of this attribute which limit the types of properties - returned, inclding :attr:`.synonyms`, :attr:`.column_attrs`, + returned, including :attr:`.synonyms`, :attr:`.column_attrs`, :attr:`.relationships`, and :attr:`.composites`. .. warning:: @@ -3166,7 +3166,7 @@ def configure_mappers(): additional options, properties, or related mappings before the operation proceeds. - * :meth:`.MapperEvents.mapper_configured` - called as each indivudal + * :meth:`.MapperEvents.mapper_configured` - called as each individual :class:`.Mapper` is configured within the process; will include all mapper state except for backrefs set up by other mappers that are still to be configured. |