From 1e1a97ee7a69ced61e4682bfc5141716bc0b377c Mon Sep 17 00:00:00 2001 From: Stephane Raux Date: Sat, 29 Jun 2019 17:57:10 -0700 Subject: [PATCH] Correct sentence about unsized coercions --- 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 5b2fcb964..377afe769 100644 --- a/src/type-coercions.md +++ b/src/type-coercions.md @@ -140,7 +140,7 @@ Coercion is allowed between the following types: - `*mut T` - `Box` - and where `T` can obtained from `U` by [unsized coercion](#unsized-coercions). + and where `U` can be obtained from `T` by [unsized coercion](#unsized-coercions).