summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorlampslave <lampslave@gmail.com>2015-04-07 20:43:42 +0300
committerTim Graham <timograham@gmail.com>2015-04-07 13:59:20 -0400
commite2294b453c66007ed4ad8e25dbd40715384cd1e0 (patch)
tree06e24adf001fbfb2d5c08f955f94e0f3d63d5885 /docs
parent993074d78d36875f984b5c2a53ef8a2547d392b5 (diff)
[1.8.x] Fixed typo in docs/ref/models/expressions.txt
Backport of 800240cb1dda2c4ff7182df3566d744c6c377bf7 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/expressions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt
index e7e4f94508..f74c4f2051 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -130,7 +130,7 @@ the field value on multiple objects - which could be very much faster than
pulling them all into Python from the database, looping over them, incrementing
the field value of each one, and saving each one back to the database::
- Reporter.objects.all().update(stories_filed=F('stories_filed) + 1)
+ Reporter.objects.all().update(stories_filed=F('stories_filed') + 1)
``F()`` therefore can offer performance advantages by: