From bcce1d901f115e84f654319338dba6a65674e6c0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 29 Aug 2005 20:33:14 +0000 Subject: [PATCH] Fixed small typo in docs/tutorial01.txt -- thanks, pb@e-scribe.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@573 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial01.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 6b4380290f..7fbdafd36f 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -176,8 +176,8 @@ These concepts are represented by simple Python classes. Edit the votes = meta.IntegerField() The code is straightforward. Each model is represented by a class that -subclasses ``django.core.meta.Model``. Each model a number of class variables, -each of which represents a database field in the model. +subclasses ``django.core.meta.Model``. Each model has a number of class +variables, each of which represents a database field in the model. Each field is represented by an instance of a ``meta.*Field`` class -- e.g., ``meta.CharField`` for character fields and ``meta.DateTimeField`` for