From d2ab6cb6dce5f525618ac2bb9ec2a0aef4727618 Mon Sep 17 00:00:00 2001 From: Dusan Odalovic <116893230+dodalovicgran@users.noreply.github.com> Date: Wed, 21 Feb 2024 09:25:34 +0100 Subject: [PATCH] Typo --- content/en/docs/b5.impls-and-traits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/b5.impls-and-traits.md b/content/en/docs/b5.impls-and-traits.md index c1baa36..71ba9a4 100755 --- a/content/en/docs/b5.impls-and-traits.md +++ b/content/en/docs/b5.impls-and-traits.md @@ -119,7 +119,7 @@ fn main() { ```rust trait From { - fn from(T) -> Self; + fn from(t: T) -> Self; } impl From for u16 {