From 1184e333a8f58f1dec68dbefb578c167c5a6d3a4 Mon Sep 17 00:00:00 2001 From: jamesbt365 Date: Fri, 1 Nov 2024 00:22:05 +0000 Subject: [PATCH] Update builder syntax example (#316) --- src/structs/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structs/context.rs b/src/structs/context.rs index ad6d19ff441..4c9af0bd743 100644 --- a/src/structs/context.rs +++ b/src/structs/context.rs @@ -135,7 +135,7 @@ context_methods! { /// Like [`Self::say`], but formats the message as a reply to the user's command /// message. /// - /// Equivalent to `.send(|b| b.content("...").reply(true))`. + /// Equivalent to `.send(CreateReply::default().content("...").reply(true))`. /// /// Only has an effect in prefix context, because slash command responses are always /// formatted as a reply.