1
0
mirror of https://github.com/django/django.git synced 2025-07-04 01:39:20 +00:00

Fixed typo in [7959]

git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7962 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2008-07-18 23:02:33 +00:00
parent ca1281330a
commit deedd01ca3

View File

@ -232,7 +232,7 @@ But, really, this is an inefficient way of adding Choice objects to the system.
It'd be better if you could add a bunch of Choices directly when you create the
Poll object. Let's make that happen.
Remove the ``register()`` cal for the Choice model. Then, edit the ``Poll``
Remove the ``register()`` call for the Choice model. Then, edit the ``Poll``
registration code to read::
class ChoiceInline(admin.StackedInline):