Django

Code

Changeset 5576

Show
Ignore:
Timestamp:
06/30/07 23:34:39 (2 years ago)
Author:
adrian
Message:

newforms-admin: Fixed typo in docstrings in newforms/models.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/newforms-admin/django/newforms/models.py

    r5477 r5576  
    235235 
    236236    def save_new(self, form, commit=True): 
    237         """Saves and retrutns a new model instance for the given form.""" 
     237        """Saves and returns a new model instance for the given form.""" 
    238238        return save_instance(form, self.model(), commit=commit) 
    239239 
    240240    def save_instance(self, form, instance, commit=True): 
    241         """Saves and retrutns an existing model instance for the given form.""" 
     241        """Saves and returns an existing model instance for the given form.""" 
    242242        return save_instance(form, instance, commit=commit) 
    243243