diff options
| author | Tim Graham <timograham@gmail.com> | 2016-02-18 08:44:53 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-18 08:45:55 -0500 |
| commit | 70d3f81ca4ea7e1e1310e13ce0a633d7f920d45b (patch) | |
| tree | d8044db774c20611cff6e85648808150f8aaf42d | |
| parent | 8fc0fe1ef4de72026c99dc7008b0089e100305c3 (diff) | |
Fixed #26233 -- Fixed invalid reSt in models.Q docstring.
| -rw-r--r-- | django/db/models/query_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
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' |
