summaryrefslogtreecommitdiff
path: root/docs/ref
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:31:07 -0400
commitfef3f50e319bd691c8fd3313d982b6c07d66445c (patch)
tree3a8ac7f06b192f4df52628d1fca371e92a1f7e87 /docs/ref
parent3c6b9f0bbd5e37099c4751cdd2a08db508d66e54 (diff)
[1.9.x] Normalized "an SQL" spelling.
Backport of 575a9a791e62de7550761970dc6797271d956c57 from master
Diffstat (limited to 'docs/ref')
-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 223c0f6460..0a1e74d9e8 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -92,7 +92,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