summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2009-08-13 17:01:31 +0000
committerKaren Tracey <kmtracey@gmail.com>2009-08-13 17:01:31 +0000
commitb72d6cf0f64b843cd56a4e28d3fc199db5be27d9 (patch)
tree30477fe01d204612aa114d59d33dfdfcdec7c116
parent6922ebadbcf6fcdafa9792f6225bea7b1976a9c8 (diff)
[1.0.x] Fixed #11508: Adding missing word to form wizard doc. Thanks thepointer and timo.
r11444 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11445 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/contrib/formtools/form-wizard.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt
index c81c24242a..98f0dbad42 100644
--- a/docs/ref/contrib/formtools/form-wizard.txt
+++ b/docs/ref/contrib/formtools/form-wizard.txt
@@ -95,7 +95,7 @@ Creating a ``FormWizard`` class
The next step is to create a :class:`~django.contrib.formtools.wizard.FormWizard`
class, which should be a subclass of ``django.contrib.formtools.wizard.FormWizard``.
-As your :class:`~django.forms.forms.Form` classes, this
+As with your :class:`~django.forms.forms.Form` classes, this
:class:`~django.contrib.formtools.wizard.FormWizard` class can live anywhere
in your codebase, but convention is to put it in :file:`forms.py`.