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