summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-07-18 23:02:33 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-07-18 23:02:33 +0000
commitdeedd01ca3e66f022899c6f5009526a00b709107 (patch)
tree37f1d7a134499ad58af466cf16c68f361a566e26 /docs
parentca1281330a727bfd98a3902f906b27afbbaad703 (diff)
Fixed typo in [7959]
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7962 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial02.txt2
1 files changed, 1 insertions, 1 deletions
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):