From: Onè <43485962+c-git@users.noreply.github.com> Date: Fri, 24 May 2024 08:28:27 +0000 (-0400) Subject: Add missing word (#45) X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=20ff3a17434573410db1986903e51055f0cb255e;p=rust_exercises.git Add missing word (#45) --- diff --git a/book/src/04_traits/05_trait_bounds.md b/book/src/04_traits/05_trait_bounds.md index 0f2e72c..af1808b 100644 --- a/book/src/04_traits/05_trait_bounds.md +++ b/book/src/04_traits/05_trait_bounds.md @@ -55,7 +55,7 @@ The duplication remains. ## Generic programming We can do better using **generics**. -Generics allow us to write that works with a **type parameter** instead of a concrete type: +Generics allow us to write code that works with a **type parameter** instead of a concrete type: ```rust fn print_if_even(n: T)