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}}