Skip to content

Commit

Permalink
minor documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
koehlma committed Mar 6, 2016
1 parent 2bdee9d commit f81b886
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions uv/base.py
Expand Up @@ -461,7 +461,7 @@ def __init__(self, user_request, base_loop, request_type, request_init,
arguments, uv_handle=None):
"""
:type user_request:
uv.Request
uv.UVRequest
:type base_loop:
Loop
:type request_type:
Expand Down Expand Up @@ -507,7 +507,7 @@ def _destroy(self, _):
def user_request(self):
"""
:rtype:
uv.Request | None
uv.UVRequest | None
"""
return self.weak_user_request()

Expand Down Expand Up @@ -562,7 +562,7 @@ def wrapper(uv_request, *arguments):
def finalize_request(user_request):
"""
:type user_request:
uv.Request
uv.UVRequest
"""
user_request.base_request.set_finished()
user_request.clear_pending()
2 changes: 1 addition & 1 deletion uv/request.py
Expand Up @@ -87,7 +87,7 @@ def __init__(self, loop, arguments, uv_handle=None, request_init=None):
@property
def type(self):
"""
Type of the request. Returns a subclass of :class:`uv.Request`.
Type of the request. Returns a subclass of :class:`uv.UVRequest`.
:type: type
"""
Expand Down

0 comments on commit f81b886

Please sign in to comment.