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
@@ -11,7 +11,7 @@ module.exports = class DeviantartCommand extends Command {
group: 'search',
memberName: 'deviantart',
description: 'Responds with an image from a DeviantArt section, with optional query.',
details: `**Sections**: ${sections.join(', ')}`,
details: `**Sections:** ${sections.join(', ')}`,
args: [
{
key: 'section',
+3 -3
View File
@@ -41,9 +41,9 @@ module.exports = class ForecastCommand extends Command {
for (let i = 0; i < 7; i++) {
const forecast = data.item.forecast[i];
embed.addField(` ${forecast.day} - ${forecast.date}`, stripIndents`
**High**: ${forecast.high}°F
**Low**: ${forecast.low}°F
**Condition**: ${forecast.text}
**High:** ${forecast.high}°F
**Low:** ${forecast.low}°F
**Condition:** ${forecast.text}
`);
}
return msg.embed(embed);
+1 -1
View File
@@ -10,7 +10,7 @@ module.exports = class ItunesCommand extends Command {
group: 'search',
memberName: 'itunes',
description: 'Searches iTunes for your query.',
details: '**Codes**: <https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes>',
details: '**Codes:** <https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes>',
clientPermissions: ['EMBED_LINKS'],
args: [
{
+1 -1
View File
@@ -34,7 +34,7 @@ module.exports = class RecipeCommand extends Command {
.setColor(0xC20000)
.setURL(recipe.href)
.setTitle(recipe.title)
.setDescription(`**Ingredients**: ${recipe.ingredients}`)
.setDescription(`**Ingredients:** ${recipe.ingredients}`)
.setThumbnail(recipe.thumbnail);
return msg.embed(embed);
} catch (err) {
+1 -1
View File
@@ -22,6 +22,6 @@ module.exports = class RuleOfTheInternetCommand extends Command {
}
run(msg, { rule }) {
return msg.say(`**Rule #${rule}**: ${rules[rule - 1]}`);
return msg.say(`**Rule #${rule}:** ${rules[rule - 1]}`);
}
};
+1 -1
View File
@@ -12,7 +12,7 @@ module.exports = class UrbanDictionaryCommand extends Command {
group: 'search',
memberName: 'urban-dictionary',
description: 'Defines a word, but with Urban Dictionary.',
details: `**Types**: ${types.join(', ')}`,
details: `**Types:** ${types.join(', ')}`,
clientPermissions: ['EMBED_LINKS'],
args: [
{