change 'iff' to 'if and only if' to avoid confusion (#3327)

pull/3330/head
Matt Westcott 2017-02-03 13:45:28 +00:00 zatwierdzone przez GitHub
rodzic 753efbb29e
commit 31d85c3aed
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -85,7 +85,7 @@ class FieldBlock(Block):
@property
def required(self):
# a FieldBlock is required iff its underlying form field is required
# a FieldBlock is required if and only if its underlying form field is required
return self.field.required
class Meta: