From d9c3e0a36af2c127b6f9193c842f588532d75d21 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 21 Jun 2008 04:43:05 +0000 Subject: [PATCH] Fixed a minor typo in some sample SQL. Thanks for the report, Glen Jarvis . git-svn-id: http://code.djangoproject.com/svn/django/trunk@7717 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/db-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/db-api.txt b/docs/db-api.txt index 4e1c2c5791..3202bd4f9f 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -1382,7 +1382,7 @@ and then converted into a query using the ``query`` attribute:: This queryset will be evaluated as subselect statement:: - SELET ... WHERE blog.id IN (SELECT id FROM ... WHERE NAME LIKE '%Cheddar%') + SELECT ... WHERE blog.id IN (SELECT id FROM ... WHERE NAME LIKE '%Cheddar%') startswith ~~~~~~~~~~