Index: docs/ref/models/querysets.txt
===================================================================
--- docs/ref/models/querysets.txt	(revision 12911)
+++ docs/ref/models/querysets.txt	(working copy)
@@ -1568,17 +1568,17 @@
 
 Example::
 
-    Entry.objects.filter(pub_date__week_day=2)
+    Entry.objects.filter(pub_date__week_day=1)
 
 SQL equivalent::
 
-    SELECT ... WHERE EXTRACT('dow' FROM pub_date) = '2';
+    SELECT ... WHERE EXTRACT('dow' FROM pub_date) = '1';
 
 (The exact SQL syntax varies for each database engine.)
 
-Note this will match any record with a pub_date that falls on a Monday (day 2
-of the week), regardless of the month or year in which it occurs. Week days
-are indexed with day 1 being Sunday and day 7 being Saturday.
+Note this will match any record with a pub_date that falls on a Monday (the
+second day of the week), regardless of the month or year in which it occurs.
+Week days are indexed with day 0 being Sunday and day 6 being Saturday.
 
 .. fieldlookup:: isnull
 
