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:: - [ , + [ , , ]