From 4ea2afa4d5fe78cf0667263b259c1fec3993ab4e Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sun, 26 Aug 2007 01:16:19 +0000 Subject: [PATCH] Fixed #5257 -- Fixed typo in tutorial from [6006]. Thanks, Collin Grady. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6020 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 65ea7503d7..60c527216b 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -259,7 +259,7 @@ These concepts are represented by simple Python classes. Edit the choice = models.CharField(max_length=200) votes = models.IntegerField() -.. adminition:: Errors about ``max_length`` +.. admonition:: Errors about ``max_length`` If Django gives you an error message saying that ``max_length`` is not a valid argument, you're most likely using an old version of