diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-06 03:32:01 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-06 03:32:01 +0000 |
| commit | 4bc4aa2fa6d9fd6eabc8f03f888c9ae88a2d1cbe (patch) | |
| tree | ee090c29bf87e8c5e3e25e6e9875bd879435870a /docs/db-api.txt | |
| parent | 0c31254376c93eb90753bc3bb974296c6d5e19c5 (diff) | |
Fixed #1779 -- Fixed typo in docs/db-api.txt. Thanks, bde3@cornell.edu
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2854 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
| -rw-r--r-- | docs/db-api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt index 39a5098da4..a25a374bbc 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -22,7 +22,7 @@ a weblog application:: name = models.CharField(maxlength=50) email = models.URLField() - class __str__(self): + def __str__(self): return self.name class Entry(models.Model): |
