Grammar cleanup (#875)

This commit:
* fixes inconsistencies (primarily regarding capitalization)
* fixes non-proper nouns that were improperly capitalized
* fixes reminents from not-so-meticulous copy+paste jobs
This commit is contained in:
Programmix
2016-11-05 16:57:34 -07:00
committed by Amish Shah
parent 93e6c69bd1
commit fe3914658a
37 changed files with 151 additions and 150 deletions

View File

@@ -6,12 +6,12 @@ const escapeMarkdown = require('../util/EscapeMarkdown');
const MessageReaction = require('./MessageReaction');
/**
* Represents a Message on Discord
* Represents a message on Discord
*/
class Message {
constructor(channel, data, client) {
/**
* The client that instantiated the Message
* The Client that instantiated the Message
* @type {Client}
*/
this.client = client;
@@ -52,7 +52,7 @@ class Message {
this.author = this.client.dataManager.newUser(data.author);
/**
* Represents the Author of the message as a Guild Member. Only available if the message comes from a Guild
* Represents the author of the message as a guild member. Only available if the message comes from a guild
* where the author is still a member.
* @type {GuildMember}
*/
@@ -151,7 +151,7 @@ class Message {
this._edits = [];
/**
* A collection of Reactions to this Message, mapped by the reaction "id".
* A collection of reactions to this message, mapped by the reaction "id".
* @type {Collection<string, MessageReaction>}
*/
this.reactions = new Collection();
@@ -504,7 +504,7 @@ class Message {
}
/**
* When concatenated with a string, this automatically concatenates the Message's content instead of the object.
* When concatenated with a string, this automatically concatenates the message's content instead of the object.
* @returns {string}
* @example
* // logs: Message: This is a message!