From c276af2373694d1c75f05619004ce34c55ceb2e8 Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Thu, 22 Feb 2024 09:30:03 +0100 Subject: [PATCH] Fix typo in metadata.rs doc comment --- library/core/src/ptr/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ptr/metadata.rs b/library/core/src/ptr/metadata.rs index c7b0fe5694a75..fe19f66a31ac4 100644 --- a/library/core/src/ptr/metadata.rs +++ b/library/core/src/ptr/metadata.rs @@ -163,7 +163,7 @@ impl Clone for PtrComponents { /// It is a pointer to a vtable (virtual call table) /// that represents all the necessary information /// to manipulate the concrete type stored inside a trait object. -/// The vtable notably it contains: +/// The vtable notably contains: /// /// * type size /// * type alignment