diff options
author | Federico Caselli <cfederico87@gmail.com> | 2019-12-11 00:08:37 +0100 |
---|---|---|
committer | Federico Caselli <cfederico87@gmail.com> | 2019-12-11 00:11:32 +0100 |
commit | 686f3c269dc84c21a063f6d0388f1ad312b1f5f1 (patch) | |
tree | bf9be9e5fbb6886878523d5370ce188a739d9a6f /lib/sqlalchemy/sql/traversals.py | |
parent | 926952c4afe0b2e16c4a74f05958bded7b932760 (diff) | |
download | sqlalchemy-686f3c269dc84c21a063f6d0388f1ad312b1f5f1.tar.gz |
fix typo strucures -> structures
Diffstat (limited to 'lib/sqlalchemy/sql/traversals.py')
-rw-r--r-- | lib/sqlalchemy/sql/traversals.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/traversals.py b/lib/sqlalchemy/sql/traversals.py index c0782ce48..977a8ddb8 100644 --- a/lib/sqlalchemy/sql/traversals.py +++ b/lib/sqlalchemy/sql/traversals.py @@ -36,7 +36,7 @@ class HasCacheKey(object): The cache key should be based on the SQL compiled structure that would ultimately be produced. That is, two structures that are composed in exactly the same way should produce the same cache key; any difference - in the strucures that would affect the SQL string or the type handlers + in the structures that would affect the SQL string or the type handlers should result in a different cache key. If a structure cannot produce a useful cache key, it should raise @@ -75,7 +75,7 @@ class HasCacheKey(object): The cache key should be based on the SQL compiled structure that would ultimately be produced. That is, two structures that are composed in exactly the same way should produce the same cache key; any difference - in the strucures that would affect the SQL string or the type handlers + in the structures that would affect the SQL string or the type handlers should result in a different cache key. The cache key returned by this method is an instance of |