From c5a4fc862e22166c8933e7e11727c577bb93067d Mon Sep 17 00:00:00 2001 From: wackbyte Date: Wed, 29 Nov 2023 08:09:08 +0000 Subject: [PATCH] Fix typo (imlements -> implements) (#226) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4701a17dcd54..cfe430db429a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -38,7 +38,7 @@ means using serenity, so here's a couple tips: ## `impl Trait` parameters Many serenity functions take an argument of type [`impl CacheHttp`](serenity::CacheHttp) or -[`impl AsRef`](serenity::Http). You can pass in any type that imlements these traits, like +[`impl AsRef`](serenity::Http). You can pass in any type that implements these traits, like [`crate::Context`] or [`serenity::Context`]. ## Gateway intents