From 3167540eb0997c998b8ce1cb9aa2fae742011fdf Mon Sep 17 00:00:00 2001 From: Ameer Ghani Date: Thu, 12 Sep 2024 04:18:26 -0500 Subject: [PATCH] Fix typo in cfg_attr statement (#693) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 41c81969..c794dbeb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -632,7 +632,7 @@ impl OctocrabBuilder /// Build a [`Client`] instance with the current [`Service`] stack. #[cfg(feature = "default-client")] - #[cfg_attr(docsrs, doc(cfg(feature = "defaut-client")))] + #[cfg_attr(docsrs, doc(cfg(feature = "default-client")))] pub fn build(self) -> Result { let client: hyper_util::client::legacy::Client<_, OctoBody> = { #[cfg(all(not(feature = "opentls"), not(feature = "rustls")))]