From 3c9bcc285147154a2980f6e661efdfa676672b6a Mon Sep 17 00:00:00 2001 From: NCPlayz Date: Sat, 18 May 2019 06:04:54 -0400 Subject: Improve documentation --- discord/colour.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'discord/colour.py') diff --git a/discord/colour.py b/discord/colour.py index 21344c47..1dc9662e 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -84,21 +84,21 @@ class Colour: @property def r(self): - """Returns the red component of the colour.""" + """:class:`int`: Returns the red component of the colour.""" return self._get_byte(2) @property def g(self): - """Returns the green component of the colour.""" + """:class:`int`: Returns the green component of the colour.""" return self._get_byte(1) @property def b(self): - """Returns the blue component of the colour.""" + """:class:`int`: Returns the blue component of the colour.""" return self._get_byte(0) def to_rgb(self): - """Returns an (r, g, b) tuple representing the colour.""" + """Tuple[:class:`int`, :class:`int`, :class:`int`]: Returns an (r, g, b) tuple representing the colour.""" return (self.r, self.g, self.b) @classmethod -- cgit v1.2.3