Django

Code

Changeset 573

Show
Ignore:
Timestamp:
08/29/05 15:33:14 (3 years ago)
Author:
adrian
Message:

Fixed small typo in docs/tutorial01.txt -- thanks, pb@e-scribe.com

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial01.txt

    r549 r573  
    177177 
    178178The code is straightforward. Each model is represented by a class that 
    179 subclasses ``django.core.meta.Model``. Each model a number of class variables, 
    180 each of which represents a database field in the model. 
     179subclasses ``django.core.meta.Model``. Each model has a number of class 
     180variables, each of which represents a database field in the model. 
    181181 
    182182Each field is represented by an instance of a ``meta.*Field`` class -- e.g.,