From 748d10d2d5a9a0daf11dc6f1ad302e877008bb15 Mon Sep 17 00:00:00 2001 From: Bert Constantin Date: Fri, 5 Nov 2010 22:24:07 +0100 Subject: [PATCH] docs --- DOCS.rst | 4 ++-- README.rst | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DOCS.rst b/DOCS.rst index 6fdf39c..1d05d7c 100644 --- a/DOCS.rst +++ b/DOCS.rst @@ -37,7 +37,7 @@ All models inheriting from your polymorphic models will be polymorphic as well. Create some objects ------------------- ->>> Project.objects.create(topic="Office Meeting") +>>> Project.objects.create(topic="Department Party") >>> ArtProject.objects.create(topic="Painting with Tim", artist="T. Turner") >>> ResearchProject.objects.create(topic="Swallow Aerodynamics", supervisor="Dr. Winter") @@ -45,7 +45,7 @@ Get polymorphic query results ----------------------------- >>> Project.objects.all() -[ , +[ , , ] diff --git a/README.rst b/README.rst index 689623b..e7a3269 100644 --- a/README.rst +++ b/README.rst @@ -42,13 +42,13 @@ If we want to retrieve all our projects, we do: Using django_polymorphic, we simply get what we stored:: - [ , + [ , , ] Using vanilla Django, we get incomplete objects, which is probably not what we wanted:: - [ , + [ , , ]