summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-05-03 22:47:23 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-05-03 22:47:23 +0300
commit49d12142b37dc5ec117a00849f92a503506a08ab (patch)
tree28e6e60ba36ae89c209b03359565690d5add3204 /examples
parentbde46e33593805584c7c0dedb3a666909fb67888 (diff)
downloadsqlalchemy-pr/266.tar.gz
Spelling fixespr/266
Diffstat (limited to 'examples')
-rw-r--r--examples/dogpile_caching/advanced.py2
-rw-r--r--examples/dogpile_caching/caching_query.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/dogpile_caching/advanced.py b/examples/dogpile_caching/advanced.py
index feccaa3ba..be9898762 100644
--- a/examples/dogpile_caching/advanced.py
+++ b/examples/dogpile_caching/advanced.py
@@ -18,7 +18,7 @@ def load_name_range(start, end, invalidate=False):
The cache option we set up is called "name_range", indicating
a range of names for the Person class.
- The `Person.addresses` collections are also cached. Its basically
+ The `Person.addresses` collections are also cached. It's basically
another level of tuning here, as that particular cache option
can be transparently replaced with joinedload(Person.addresses).
The effect is that each Person and their Address collection
diff --git a/examples/dogpile_caching/caching_query.py b/examples/dogpile_caching/caching_query.py
index 9ac0d431a..c636c5261 100644
--- a/examples/dogpile_caching/caching_query.py
+++ b/examples/dogpile_caching/caching_query.py
@@ -202,7 +202,7 @@ class RelationshipCache(MapperOption):
def process_query_conditionally(self, query):
"""Process a Query that is used within a lazy loader.
- (the process_query_conditionally() method is a SQLAlchemy
+ (the process_query_conditionally() method is an SQLAlchemy
hook invoked only within lazyload.)
"""