Fix typo in MessageEmbed#video

This commit is contained in:
Crawl
2017-03-30 22:14:06 +02:00
committed by GitHub
parent dd3831fa1e
commit f73e6a3e4d

View File

@@ -78,7 +78,7 @@ class MessageEmbed {
this.image = data.image ? new MessageEmbedImage(this, data.image) : null;
/**
* The image of this embed, if there is one
* The video of this embed, if there is one
* @type {?MessageEmbedVideo}
*/
this.video = data.video ? new MessageEmbedVideo(this, data.video) : null;