Change **: to :** when bolding lists

This commit is contained in:
Daniel Odendahl Jr
2018-09-07 20:47:28 +00:00
parent 2ce04ef2f0
commit 1ac0c405e4
32 changed files with 342 additions and 342 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ module.exports = class Base64Command extends Command {
group: 'text-edit',
memberName: 'base64',
description: 'Converts text to/from Base64.',
details: `**Modes**: ${modes.join(', ')}`,
details: `**Modes:** ${modes.join(', ')}`,
args: [
{
key: 'mode',
+1 -1
View File
@@ -9,7 +9,7 @@ module.exports = class BinaryCommand extends Command {
group: 'text-edit',
memberName: 'binary',
description: 'Converts text to/from binary.',
details: `**Modes**: ${modes.join(', ')}`,
details: `**Modes:** ${modes.join(', ')}`,
args: [
{
key: 'mode',
+1 -1
View File
@@ -12,7 +12,7 @@ module.exports = class CowSayCommand extends Command {
group: 'text-edit',
memberName: 'cow-say',
description: 'Makes a cow say your text.',
details: `**Types**: ${cows.join(', ')}`,
details: `**Types:** ${cows.join(', ')}`,
args: [
{
key: 'text',
+1 -1
View File
@@ -12,7 +12,7 @@ module.exports = class CowThinkCommand extends Command {
group: 'text-edit',
memberName: 'cow-think',
description: 'Makes a cow think your text.',
details: `**Types**: ${cows.join(', ')}`,
details: `**Types:** ${cows.join(', ')}`,
args: [
{
key: 'text',
+1 -1
View File
@@ -28,7 +28,7 @@ module.exports = class PortalSendCommand extends Command {
if (!channels.size) return msg.reply('No channels have an open portal...');
const channel = channels.random();
try {
await channel.send(`**${msg.author.tag} (${msg.channel.type === 'text' ? msg.guild.name : 'DM'})**: ${message}`);
await channel.send(`**${msg.author.tag} (${msg.channel.type === 'text' ? msg.guild.name : 'DM'}):** ${message}`);
return msg.say(`Message sent to **${channel.name}** in **${channel.guild.name}**!`);
} catch (err) {
return msg.reply('Failed to send the message. Try again later!');
+1 -1
View File
@@ -13,7 +13,7 @@ module.exports = class TranslateCommand extends Command {
group: 'text-edit',
memberName: 'translate',
description: 'Translates text to a specific language.',
details: `**Codes**: ${Object.keys(codes).join(', ')}`,
details: `**Codes:** ${Object.keys(codes).join(', ')}`,
clientPermissions: ['EMBED_LINKS'],
args: [
{