From: Alex Schroeder Date: Thu, 15 Aug 2019 13:18:45 +0000 (+0200) Subject: people.py: fix typos in doc string X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d37a5f79d34243a319e329a77b3d030fadb049d1;p=diaspy.git people.py: fix typos in doc string --- diff --git a/diaspy/people.py b/diaspy/people.py index c16cb16..af16b6f 100644 --- a/diaspy/people.py +++ b/diaspy/people.py @@ -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')