From dcc70b07ddf092af1c69cd6fe97ef0128f630da6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 21 Nov 2024 23:57:29 +0900 Subject: [PATCH] Fix typo --- pin-project-internal/src/pin_project/derive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pin-project-internal/src/pin_project/derive.rs b/pin-project-internal/src/pin_project/derive.rs index 5422cae2..0cd22a45 100644 --- a/pin-project-internal/src/pin_project/derive.rs +++ b/pin-project-internal/src/pin_project/derive.rs @@ -891,7 +891,7 @@ fn make_drop_impl(cx: &Context<'_>) -> TokenStream { quote! { // There are two possible cases: // 1. The user type does not implement Drop. In this case, - // the first blanked impl will not apply to it. This code + // the first blanket impl will not apply to it. This code // will compile, as there is only one impl of MustNotImplDrop for the user type // 2. The user type does impl Drop. This will make the blanket impl applicable, // which will then conflict with the explicit MustNotImplDrop impl below.