From deedd01ca3e66f022899c6f5009526a00b709107 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Fri, 18 Jul 2008 23:02:33 +0000 Subject: [PATCH] Fixed typo in [7959] git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7962 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial02.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index 7504ad1bd1..c69fd1459f 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -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):