From d4729bfec0b619e6cf1faf9a1212d1c067ab009a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enes=20Ayd=C4=B1n?= Date: Mon, 7 Jul 2025 23:58:09 +0300 Subject: [PATCH] Update exercise.md (#2808) The point at which the generics segment will be covered has changed multiple times. After the last change, the 'logger trait' section was not updated to reflect when it will now be covered. To keep it more general, I suggest not specifying when it will be covered. --- src/methods-and-traits/exercise.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/methods-and-traits/exercise.md b/src/methods-and-traits/exercise.md index 018b89f9..8b1f02a0 100644 --- a/src/methods-and-traits/exercise.md +++ b/src/methods-and-traits/exercise.md @@ -15,8 +15,7 @@ messages above a maximum verbosity. This is a common pattern: a struct wrapping a trait implementation and implementing that same trait, adding behavior in the process. In the "Generics" -segment this afternoon, we will see how to make the wrapper generic over the -wrapped type. +segment, we will see how to make the wrapper generic over the wrapped type. ```rust,compile_fail,editable {{#include exercise.rs:setup}}