From bbc78b29aed82975af2793aa99f252bab61bed4c Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 31 May 2016 20:39:12 -0400 Subject: [PATCH] Fix discord.Object documentation. --- discord/object.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/object.py b/discord/object.py index 2bf2d4952..5ea9be2ca 100644 --- a/discord/object.py +++ b/discord/object.py @@ -29,7 +29,7 @@ class Object: """Represents a generic Discord object. The purpose of this class is to allow you to create 'miniature' - versions of data classes if you want to pass in just an ID. All functions + versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class. @@ -50,5 +50,5 @@ class Object: @property def created_at(self): - """Returns the private channel's creation time in UTC.""" + """Returns the snowflake's creation time in UTC.""" return utils.snowflake_time(self.id)