From 16e2485c3398199077b37a79725bb58c6d276782 Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:26:57 +0200 Subject: [PATCH] Update associated-generics.md --- docs/Rust/section6/associated-generics.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Rust/section6/associated-generics.md b/docs/Rust/section6/associated-generics.md index 681699ed1..2e2775021 100644 --- a/docs/Rust/section6/associated-generics.md +++ b/docs/Rust/section6/associated-generics.md @@ -7,6 +7,8 @@ description: Learn the difference between associated types vs generic types. Associated types are an abstract way to define a name for what a type should be. + + In the [Generics](./generics.md) section, we encountered an associated type when we defined the `Mul` trait as a bound: