From fb02191b80972a9cf7c3baa765cb3aa84c6f1cfa Mon Sep 17 00:00:00 2001 From: NCPlayz Date: Sat, 16 Mar 2019 21:43:55 +0000 Subject: Organise documentation --- discord/gateway.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discord/gateway.py') diff --git a/discord/gateway.py b/discord/gateway.py index 7af424c9..bc9a17a2 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -256,7 +256,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol): Parameters ----------- - event : str + event: :class:`str` The event name in all upper case to wait for. predicate A function that takes a data parameter to check for event @@ -445,7 +445,7 @@ class DiscordWebSocket(websockets.client.WebSocketClientProtocol): @property def latency(self): - """:obj:`float`: Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.""" + """:class:`float`: Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds.""" heartbeat = self._keep_alive return float('inf') if heartbeat is None else heartbeat.latency -- cgit v1.2.3