summaryrefslogtreecommitdiff
path: root/examples/dogpile_caching/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dogpile_caching/model.py')
-rw-r--r--examples/dogpile_caching/model.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/dogpile_caching/model.py b/examples/dogpile_caching/model.py
index 622d31e6a..75c0ad28a 100644
--- a/examples/dogpile_caching/model.py
+++ b/examples/dogpile_caching/model.py
@@ -1,6 +1,7 @@
-"""Model. We are modeling Person objects with a collection
-of Address objects. Each Address has a PostalCode, which
-in turn references a City and then a Country:
+"""model.py
+
+The datamodel, which represents Person that has multiple
+Address objects, each with PostalCode, City, Country.
Person --(1..n)--> Address
Address --(has a)--> PostalCode