Improve docs a bit

This commit is contained in:
Crawl
2017-04-30 04:30:44 +02:00
parent 3f8c0a4d11
commit ac92d2cecc
83 changed files with 716 additions and 711 deletions

View File

@@ -1,10 +1,10 @@
/**
* Represents an attachment in a message
* Represents an attachment in a message.
*/
class MessageAttachment {
constructor(message, data) {
/**
* The Client that instantiated this MessageAttachment.
* The client that instantiated this MessageAttachment
* @name MessageAttachment#client
* @type {Client}
* @readonly
@@ -12,7 +12,7 @@ class MessageAttachment {
Object.defineProperty(this, 'client', { value: message.client });
/**
* The message this attachment is part of.
* The message this attachment is part of
* @type {Message}
*/
this.message = message;