Fixed typo in docs/ref/models/expressions.txt

This commit is contained in:
Ian Foote 2015-05-07 23:14:52 +01:00 committed by Tim Graham
parent a969394cff
commit 756a727252
1 changed files with 1 additions and 1 deletions

View File

@ -589,7 +589,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::