Browse Source

Minor spelling fixes (#4)

* Minor spelling fixes

* Minor spelling fixes

* Minor spelling fixes

* Minor spelling fixes

* Minor spelling fixes

* Minor spelling fixes

* Minor spelling fixes
pull/5/head
Wolfiri 9 years ago
committed by Andrei Zbikowski
parent
commit
e80dcec614
  1. 6
      disco/api/ratelimit.py
  2. 6
      disco/bot/command.py
  3. 12
      disco/gateway/events.py
  4. 4
      disco/state.py
  5. 8
      disco/types/channel.py
  6. 24
      disco/types/guild.py
  7. 4
      disco/types/invite.py

6
disco/api/ratelimit.py

@ -114,7 +114,7 @@ class RateLimiter(object):
""" """
Checks whether a given route can be called. This function will return Checks whether a given route can be called. This function will return
immediately if no rate-limit cooldown is being imposed for the given immediately if no rate-limit cooldown is being imposed for the given
route, or will wait indefinently (unless timeout is specified) until route, or will wait indefinitely (unless timeout is specified) until
the route is finished being cooled down. This function should be called the route is finished being cooled down. This function should be called
before making a request to the specified route. before making a request to the specified route.
@ -123,8 +123,8 @@ class RateLimiter(object):
route : tuple(HTTPMethod, str) route : tuple(HTTPMethod, str)
The route that will be checked. The route that will be checked.
timeout : Optional[int] timeout : Optional[int]
A timeout after which we'll give up waiting for a routes cooldown A timeout after which we'll give up waiting for a route's cooldown
to expire, and immedietly return. to expire, and immediately return.
Returns Returns
------- -------

6
disco/bot/command.py

@ -77,7 +77,7 @@ class CommandEvent(object):
class CommandError(Exception): class CommandError(Exception):
""" """
An exception which is thrown when the arguments for a command are invalid, An exception which is thrown when the arguments for a command are invalid,
or don't match the commands specifications. or don't match the command's specifications.
""" """
@ -151,7 +151,7 @@ class Command(object):
@cached_property @cached_property
def compiled_regex(self): def compiled_regex(self):
""" """
A compiled version of this commands regex A compiled version of this command's regex
""" """
return re.compile(self.regex) return re.compile(self.regex)
@ -179,7 +179,7 @@ class Command(object):
Returns Returns
------- -------
bool bool
Whether this command was sucessful Whether this command was successful
""" """
if len(event.args) < self.args.required_length: if len(event.args) < self.args.required_length:
raise CommandError('{} requires {} arguments (passed {})'.format( raise CommandError('{} requires {} arguments (passed {})'.format(

12
disco/gateway/events.py

@ -87,7 +87,7 @@ def wraps_model(model, alias=None):
class Ready(GatewayEvent): class Ready(GatewayEvent):
""" """
Sent after the initial gateway handshake is complete. Contains data required Sent after the initial gateway handshake is complete. Contains data required
for bootstrapping the clients states. for bootstrapping the client's states.
""" """
version = Field(int, alias='v') version = Field(int, alias='v')
session_id = Field(str) session_id = Field(str)
@ -151,7 +151,7 @@ class ChannelDelete(ChannelCreate):
class ChannelPinsUpdate(GatewayEvent): class ChannelPinsUpdate(GatewayEvent):
""" """
Sent when a channels pins are updated. Sent when a channel's pins are updated.
""" """
channel_id = Field(snowflake) channel_id = Field(snowflake)
last_pin_timestamp = Field(int) last_pin_timestamp = Field(int)
@ -175,21 +175,21 @@ class GuildBanRemove(GuildBanAdd):
class GuildEmojisUpdate(GatewayEvent): class GuildEmojisUpdate(GatewayEvent):
""" """
Sent when a guilds emojis are updated. Sent when a guild's emojis are updated.
""" """
pass pass
class GuildIntegrationsUpdate(GatewayEvent): class GuildIntegrationsUpdate(GatewayEvent):
""" """
Sent when a guilds integrations are updated. Sent when a guild's integrations are updated.
""" """
pass pass
class GuildMembersChunk(GatewayEvent): class GuildMembersChunk(GatewayEvent):
""" """
Sent in response to a members chunk request. Sent in response to a member's chunk request.
""" """
guild_id = Field(snowflake) guild_id = Field(snowflake)
members = Field(listof(GuildMember)) members = Field(listof(GuildMember))
@ -275,7 +275,7 @@ class MessageDeleteBulk(GatewayEvent):
@wraps_model(Presence) @wraps_model(Presence)
class PresenceUpdate(GatewayEvent): class PresenceUpdate(GatewayEvent):
""" """
Sent when a users presence is updated. Sent when a user's presence is updated.
""" """
guild_id = Field(snowflake) guild_id = Field(snowflake)
roles = Field(listof(snowflake)) roles = Field(listof(snowflake))

4
disco/state.py

@ -57,9 +57,9 @@ class State(object):
Attributes Attributes
---------- ----------
EVENTS : list(str) EVENTS : list(str)
A list of all events the State object binds too. A list of all events the State object binds to
client : :class:`disco.client.Client` client : :class:`disco.client.Client`
The Client instance this state is attached too The Client instance this state is attached to
config : :class:`StateConfig` config : :class:`StateConfig`
The configuration for this state instance The configuration for this state instance
me : :class:`disco.types.user.User` me : :class:`disco.types.user.User`

8
disco/types/channel.py

@ -63,13 +63,13 @@ class Channel(Model, Permissible):
guild_id : Optional[snowflake] guild_id : Optional[snowflake]
The guild id this channel is part of. The guild id this channel is part of.
name : str name : str
The channels name. The channel's name.
topic : str topic : str
The channels topic. The channel's topic.
position : int position : int
The channels position. The channel's position.
bitrate : int bitrate : int
The channels bitrate. The channel's bitrate.
recipients: list(:class:`disco.types.user.User`) recipients: list(:class:`disco.types.user.User`)
Members of this channel (if this is a DM channel). Members of this channel (if this is a DM channel).
type : :const:`ChannelType` type : :const:`ChannelType`

24
disco/types/guild.py

@ -102,7 +102,7 @@ class GuildMember(Model):
mute : bool mute : bool
Whether this member is server voice-muted. Whether this member is server voice-muted.
deaf : bool deaf : bool
Whether this member is server voice-deafend. Whether this member is server voice-deafened.
joined_at : datetime joined_at : datetime
When this user joined the guild. When this user joined the guild.
roles : list(snowflake) roles : list(snowflake)
@ -122,7 +122,7 @@ class GuildMember(Model):
------- -------
Optional[:class:`disco.types.voice.VoiceState`] Optional[:class:`disco.types.voice.VoiceState`]
Returns the voice state for the member if they are currently connected Returns the voice state for the member if they are currently connected
to the guilds voice server. to the guild's voice server.
""" """
return self.guild.get_voice_state(self) return self.guild.get_voice_state(self)
@ -145,7 +145,7 @@ class GuildMember(Model):
def set_nickname(self, nickname=None): def set_nickname(self, nickname=None):
""" """
Sets the members nickname (or clears it if None). Sets the member's nickname (or clears it if None).
Args Args
---- ----
@ -195,17 +195,17 @@ class Guild(Model, Permissible):
embed_channel_id : snowflake embed_channel_id : snowflake
The id of the embed channel. The id of the embed channel.
name : str name : str
Guilds name. Guild's name.
icon : str icon : str
Guilds icon (as PNG binary data). Guild's icon (as PNG binary data).
splash : str splash : str
Guilds splash image (as PNG binary data). Guild's splash image (as PNG binary data).
region : str region : str
Voice region. Voice region.
afk_timeout : int afk_timeout : int
Delay after which users are automatically moved to the afk channel. Delay after which users are automatically moved to the afk channel.
embed_enabled : bool embed_enabled : bool
Whether the guilds embed is enabled. Whether the guild's embed is enabled.
verification_level : int verification_level : int
The verification level used by the guild. The verification level used by the guild.
mfa_level : int mfa_level : int
@ -213,15 +213,15 @@ class Guild(Model, Permissible):
features : list(str) features : list(str)
Extra features enabled for this guild. Extra features enabled for this guild.
members : dict(snowflake, :class:`GuildMember`) members : dict(snowflake, :class:`GuildMember`)
All of the guilds members. All of the guild's members.
channels : dict(snowflake, :class:`disco.types.channel.Channel`) channels : dict(snowflake, :class:`disco.types.channel.Channel`)
All of the guilds channels. All of the guild's channels.
roles : dict(snowflake, :class:`Role`) roles : dict(snowflake, :class:`Role`)
All of the guilds roles. All of the guild's roles.
emojis : dict(snowflake, :class:`Emoji`) emojis : dict(snowflake, :class:`Emoji`)
All of the guilds emojis. All of the guild's emojis.
voice_states : dict(str, :class:`disco.types.voice.VoiceState`) voice_states : dict(str, :class:`disco.types.voice.VoiceState`)
All of the guilds voice states. All of the guild's voice states.
""" """
id = Field(snowflake) id = Field(snowflake)
owner_id = Field(snowflake) owner_id = Field(snowflake)

4
disco/types/invite.py

@ -19,13 +19,13 @@ class Invite(Model):
channel : :class:`disco.types.channel.Channel` channel : :class:`disco.types.channel.Channel`
The channel this invite is for. The channel this invite is for.
max_age : int max_age : int
The time after this invites creation at which it expires. The time after this invite's creation at which it expires.
max_uses : int max_uses : int
The maximum number of uses. The maximum number of uses.
uses : int uses : int
The current number of times the invite was used. The current number of times the invite was used.
temporary : bool temporary : bool
Whether this invite only grants temporary memborship. Whether this invite only grants temporary membership.
created_at : datetime created_at : datetime
When this invite was created. When this invite was created.
""" """

Loading…
Cancel
Save