diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-03-18 00:05:30 -0400 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2012-03-18 00:05:30 -0400 |
commit | 39034288416c19a89d1809da9021910c12f250fe (patch) | |
tree | 94d0f98eb6d0ddea1d082ea2bff5134400218ebe /lib/sqlalchemy/sql/expression.py | |
parent | c8f693351ac20d5bd4318224595b4d999553a920 (diff) | |
download | sqlalchemy-39034288416c19a89d1809da9021910c12f250fe.tar.gz |
I'm pretty sure this should be entities
Diffstat (limited to 'lib/sqlalchemy/sql/expression.py')
-rw-r--r-- | lib/sqlalchemy/sql/expression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index c00e18014..6e16d01f8 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -1356,7 +1356,7 @@ def _cloned_intersection(a, b): """return the intersection of sets a and b, counting any overlap between 'cloned' predecessors. - The returned set is in terms of the enties present within 'a'. + The returned set is in terms of the entities present within 'a'. """ all_overlap = set(_expand_cloned(a)).intersection(_expand_cloned(b)) |