Changeset 92

Show
Ignore:
Timestamp:
04/28/08 11:23:09 (7 months ago)
Author:
fs
Message:

fixing some spelling errors

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/test_address_list.py

    r84 r92  
    2525        self._addresses = AddressList() 
    2626     
    27     # Helper function to avoid repitition. 
     27    # Helper function to avoid repetition. 
    2828    def check(self, addresses, string): 
    2929        self.assertEqual(self.addresses, addresses) 
  • trunk/turbomail/control.py

    r84 r92  
    7575        load('provider', 'debug') 
    7676         
    77         # Load and initalize the various extensions. 
     77        # Load and initialize the various extensions. 
    7878        extensions = pkg_resources.iter_entry_points("turbomail.extensions") 
    7979        for entrypoint in extensions: 
  • trunk/turbomail/util.py

    r88 r92  
    1515 
    1616class Address(object): 
    17     """Validated electonic mail address class. 
     17    """Validated electronic mail address class. 
    1818     
    1919    This class knows how to validate and format e-mail addresses.  It 
    2020    uses Python's built-in `parseaddr` and `formataddr` helper 
    21     functions and helps guarentee a uniform base for all e-mail 
     21    functions and helps guarantee a uniform base for all e-mail 
    2222    address operations. 
    2323