summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-29 20:33:14 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-29 20:33:14 +0000
commitbcce1d901f115e84f654319338dba6a65674e6c0 (patch)
treeca45388236dfd6fde22f5700c23dbb5b7d5769b2 /docs/tutorial01.txt
parent299c3cdd8c5c83a2936cf84dc9d6745db9b39454 (diff)
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
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt4
1 files 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