From 92bf5a9d2562b9f388561132ad27750bde3927b0 Mon Sep 17 00:00:00 2001 From: dcodesdev <101001810+dcodesdev@users.noreply.github.com> Date: Sun, 12 Jan 2025 22:11:46 +0300 Subject: [PATCH] fix --- challenges/generics/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/generics/description.md b/challenges/generics/description.md index d6a0561..1207e29 100644 --- a/challenges/generics/description.md +++ b/challenges/generics/description.md @@ -18,7 +18,7 @@ If you're stuck, here are some hints to help you solve the challenge: ```rust struct ItemContainer { - item: T, + item: T, } ```