From ddd9a742ec06eb34a027d12ac8071513b88ab397 Mon Sep 17 00:00:00 2001 From: Andrew Straw Date: Fri, 1 Nov 2024 07:35:31 +0100 Subject: [PATCH] fix typo referring to 'Unsize' trait --- src/type-coercions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/type-coercions.md b/src/type-coercions.md index 821518693..26e27eb1d 100644 --- a/src/type-coercions.md +++ b/src/type-coercions.md @@ -216,7 +216,7 @@ r[coerce.unsized.composite] * `Foo` is a struct. * `T` implements `Unsize`. * The last field of `Foo` has a type involving `T`. - * If that field has type `Bar`, then `Bar` implements `Unsized>`. + * If that field has type `Bar`, then `Bar` implements `Unsize>`. * T is not part of the type of any other fields. r[coerce.unsized.pointer]