Django

Code

Changeset 8130

Show
Ignore:
Timestamp:
07/28/08 15:35:39 (5 months ago)
Author:
gwilson
Message:

A few corrections to my docstrings in [8129].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/pagination_regress/tests.py

    r8129 r8130  
    1111        """ 
    1212        Helper method that instantiates a Paginator object from the passed 
    13         params and then checks that it's attributes match the passed output. 
     13        params and then checks that its attributes match the passed output. 
    1414        """ 
    1515        count, num_pages, page_range = output 
     
    2121    def check_attribute(self, name, paginator, expected, params): 
    2222        """ 
    23         Helper method to check a single attribute and gives a nice error 
     23        Helper method that checks a single attribute and gives a nice error 
    2424        message upon test failure. 
    2525        """ 
     
    9494        """ 
    9595        Helper method that instantiates a Paginator object from the passed 
    96         params and then checks that the start and end indexes of for the passed 
     96        params and then checks that the start and end indexes of the passed 
    9797        page_num match those given as a 2-tuple in indexes. 
    9898        """