diff options
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/standard/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/standard/mod.rs b/src/framework/standard/mod.rs index 83ae765..d769d02 100644 --- a/src/framework/standard/mod.rs +++ b/src/framework/standard/mod.rs @@ -715,7 +715,7 @@ impl StandardFramework { /// /// ```rust,ignore /// framework.command("ping", |c| c - /// .description("Responds with 'pong'.") + /// .desc("Responds with 'pong'.") /// .exec(|ctx, _, _| { /// let _ = ctx.say("pong"); /// })); |