summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-05-04 02:30:48 +0300
committerTim Graham <timograham@gmail.com>2016-05-03 19:30:48 -0400
commit575a9a791e62de7550761970dc6797271d956c57 (patch)
treeb9efc4ac2c223fc0a10aeb7c33f6c548dba48830 /docs/ref/models
parente00d77c4834b40f06f9bf271da5fdfb526ad8f56 (diff)
Normalized "an SQL" spelling.
Diffstat (limited to 'docs/ref/models')
-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 aada3b448d..d29d8d05b4 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -88,7 +88,7 @@ makes it possible to refer to model field values and perform database
operations using them without actually having to pull them out of the database
into Python memory.
-Instead, Django uses the ``F()`` object to generate a SQL expression that
+Instead, Django uses the ``F()`` object to generate an SQL expression that
describes the required operation at the database level.
This is easiest to understand through an example. Normally, one might do