From 821dfc0eca613376edb23b96bd932b74602948b4 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 30 Mar 2024 05:09:30 +0900 Subject: [PATCH] Update src/lib.rs --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 0896739..6247cb4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -347,7 +347,7 @@ pin-project supports this. /// /// Note that the argument to `PinnedDrop::drop` cannot be named `self`. /// -/// `pin_project_lite` implements the actual [`Drop`] trait via PinnedDrop you implemented. To +/// `pin_project!` implements the actual [`Drop`] trait via PinnedDrop you implemented. To /// explicitly drop a type that implements PinnedDrop, use the [drop] function just like dropping a /// type that directly implements [Drop]. ///