1
0

Fixed Typo

This commit is contained in:
Lukas Blacha
2023-02-03 11:02:29 +01:00
parent fef4efd923
commit e2b3c636ac

View File

@@ -47,7 +47,7 @@ Um ein Command zu erstellen gibt es auch wieder einen Dekorator. Commands werden
Ein Beispiel für einen Command um zwei Strings miteinander zu verbinden:
> ```
> bot.command()
> @bot.command()
> async def add(ctx: commands.Context, left: int, right: int):
> """Adds two numbers together."""
> await ctx.send(str(left + right))