1
0
mirror of https://github.com/django/django.git synced 2025-04-01 03:56:42 +00:00

[1.8.x] Fixed typo in docs/ref/models/expressions.txt

Backport of 756a7272529bb014b9543f4a169e9c8abd2a0a4b from master
This commit is contained in:
Ian Foote 2015-05-07 23:14:52 +01:00 committed by Tim Graham
parent 9116a3c591
commit eb534f6412

View File

@ -593,7 +593,7 @@ to play nice with other query expressions::
def get_source_expressions(self):
return self.expressions
def set_source_expressions(expressions):
def set_source_expressions(self, expressions):
self.expressions = expressions
Let's see how it works::