Django

Code

Changeset 8630

Show
Ignore:
Timestamp:
08/27/08 10:39:00 (3 months ago)
Author:
brosner
Message:

Corrected a couple of typos in docstrings of methods in BaseFormSet?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/forms/formsets.py

    r8562 r8630  
    120120        """ 
    121121        Returns a list of forms that have been marked for deletion. Raises an  
    122         AttributeError is deletion is not allowed. 
     122        AttributeError if deletion is not allowed. 
    123123        """ 
    124124        if not self.is_valid() or not self.can_delete: 
     
    141141        """ 
    142142        Returns a list of form in the order specified by the incoming data. 
    143         Raises an AttributeError is deletion is not allowed. 
     143        Raises an AttributeError if deletion is not allowed. 
    144144        """ 
    145145        if not self.is_valid() or not self.can_order: