summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-18 08:44:53 -0500
committerTim Graham <timograham@gmail.com>2016-02-18 08:46:30 -0500
commit2afbc6b7be749b0af98fea115dbe70f5263b9097 (patch)
tree791c0768c124fd4741b9f9b7b6c4e67e5c38317c
parent0d2b97ca18b576d1bbff2ccb089527e36d99eaf9 (diff)
[1.9.x] Fixed #26233 -- Fixed invalid reSt in models.Q docstring.
Backport of 70d3f81ca4ea7e1e1310e13ce0a633d7f920d45b from master
-rw-r--r--django/db/models/query_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py
index b25b408230..195e8f4c40 100644
--- a/django/db/models/query_utils.py
+++ b/django/db/models/query_utils.py
@@ -45,7 +45,7 @@ class QueryWrapper(object):
class Q(tree.Node):
"""
Encapsulates filters as objects that can then be combined logically (using
- & and |).
+ `&` and `|`).
"""
# Connection types
AND = 'AND'