From 7280851fe535755ee831250b24433aefad4d756e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Pace?= Date: Wed, 2 Jun 2021 07:48:15 -0300 Subject: [PATCH] fix typo (t -> it) (#41) --- posts/sizedness-in-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/sizedness-in-rust.md b/posts/sizedness-in-rust.md index 3465a7b..56f7b06 100644 --- a/posts/sizedness-in-rust.md +++ b/posts/sizedness-in-rust.md @@ -298,7 +298,7 @@ fn func(t: T) {} // ...which we can opt-out of by explicitly setting ?Sized... fn func(t: T) {} // ❌ -// ...which doesn't compile since t doesn't have +// ...which doesn't compile since it doesn't have // a known size so we must put it behind a pointer... fn func(t: &T) {} // ✅ fn func(t: Box) {} // ✅