From 70d3f81ca4ea7e1e1310e13ce0a633d7f920d45b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 18 Feb 2016 08:44:53 -0500 Subject: [PATCH] Fixed #26233 -- Fixed invalid reSt in models.Q docstring. --- django/db/models/query_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/query_utils.py b/django/db/models/query_utils.py index 1cd4e579d5..88d3dc94ae 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'