people.py: fix typos in doc string
authorAlex Schroeder <alex@gnu.org>
Thu, 15 Aug 2019 13:18:45 +0000 (15:18 +0200)
committerAlex Schroeder <alex@gnu.org>
Thu, 15 Aug 2019 13:19:16 +0000 (15:19 +0200)
diaspy/people.py

index c16cb169dbc76c1a7a5e19891276583715360eb7..af16b6f0ee6386da035b51fbe1d20854b5071adc 100644 (file)
@@ -12,7 +12,7 @@ from diaspy import search
 
 
 def sephandle(handle):
-       """Separate Diaspora* handle into pod pod and user.
+       """Separate Diaspora* handle into pod and user.
 
        :returns: two-tuple (pod, user)
        """
@@ -235,7 +235,7 @@ class User():
                if request.status_code != 204: raise errors.UserError('could not delete photo_id: {0}'.format(photo_id))
 
 class Me():
-       """Object represetnting current user.
+       """Object representing the current user.
        """
        _userinfo_regex = re.compile(r'window.current_user_attributes = ({.*})')
        _userinfo_regex_2 = re.compile(r'gon.user=({.*});gon.preloads')