summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-15 23:40:45 -0500
committerseth <[email protected]>2023-11-16 05:41:54 +0000
commitfda5ce1f689d0de2e4ca47566218da28bd0b135f (patch)
treefb6744f26c8e6a3b9d2be980b098314a89c4b7ff
parentc1c916678e0afec308d905c97d9ccd241c8a1edf (diff)
fix: typo in version embed
-rw-r--r--src/commands/version.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/version.rs b/src/commands/version.rs
index 54585b7..d411f76 100644
--- a/src/commands/version.rs
+++ b/src/commands/version.rs
@@ -24,7 +24,7 @@ pub async fn version(ctx: Context<'_>) -> Result<(), Error> {
ctx.send(|c| {
c.embed(|e| {
- e.title("Vesion Information")
+ e.title("Version Information")
.description("powered by poise!")
.fields(fields)
.color((136, 199, 253))