Skip to content

Commit

Permalink
Merge pull request #3 from tarto-dev/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
tarto-dev authored Feb 15, 2024
2 parents 85b79c5 + 279b0fb commit b6a2941
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,18 +242,18 @@ async def product_cycle(
async def help(inter):
embed = Embed(title="Bot Help")
embed.add_field(
name="/get_products", value="Gets all available products", inline=False
name="/get_products", value="Gets all available products.", inline=False
)
embed.add_field(
name="/product_details",
value="Get EoL dates of all cycles of a given product.",
inline=False,
)
embed.add_field(
name="/product_cycle", value="Gets details of a single cycle", inline=False
name="/product_cycle", value="Gets details of a single cycle.", inline=False
)
embed.add_field(
name="/help", value="Get help information about the bot", inline=False
name="/help", value="Get help information about the bot.", inline=False
)
embed.set_footer(text="Use /help <command> for more details on a specific command.")
await inter.channel.send(embed=embed)
Expand Down

0 comments on commit b6a2941

Please sign in to comment.