From 4cb05965d54b8a61580f599e5301c231302c68a9 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Sat, 12 Oct 2019 15:18:24 +0200
Subject: [PATCH] fixed command name

---
 commands/utility/vid2gif.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/commands/utility/vid2gif.js b/commands/utility/vid2gif.js
index 466e70a4..9158f081 100644
--- a/commands/utility/vid2gif.js
+++ b/commands/utility/vid2gif.js
@@ -5,9 +5,9 @@ const util = require('util');
 const exec = util.promisify(require('child_process').exec);
 const superagent = require('superagent');
 
-class vid2giftCommand extends Command {
+class vid2gifCommand extends Command {
 	constructor() {
-		super('vid2gift', {
+		super('vid2gif', {
 			aliases: ['vid2gif', 'v2g', 'vg'],
 			category: 'utility',
 			args: [
@@ -86,4 +86,4 @@ class vid2giftCommand extends Command {
 	}
 }
 
-module.exports = vid2giftCommand;
\ No newline at end of file
+module.exports = vid2gifCommand;
\ No newline at end of file