summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-02-10 21:43:45 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-02-10 21:43:45 +0000
commit906e5dac0d4a8ec66bb28fbe3d954df6245b6b18 (patch)
treea9274451101f5a49318910fbbde71a2b232dc255 /docs/db-api.txt
parentbf16befc433ff9e1764db0fa57ef05b507eee0e0 (diff)
Fixed #1335 -- Fixed typo in docs/db-api.txt. Thanks, Eric Walstad
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2302 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
-rw-r--r--docs/db-api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt
index 8349576820..72e03e5a88 100644
--- a/docs/db-api.txt
+++ b/docs/db-api.txt
@@ -173,7 +173,7 @@ The DB API supports the following lookup types:
in In a given list: ``polls.get_list(id__in=[1, 3, 4])`` returns
a list of polls whose IDs are either 1, 3 or 4.
startswith Case-sensitive starts-with:
- ``polls.get_list(question_startswith="Would")``. (PostgreSQL
+ ``polls.get_list(question__startswith="Would")``. (PostgreSQL
and MySQL only. SQLite doesn't support case-sensitive LIKE
statements; ``startswith`` will act like ``istartswith`` for
SQLite.)