From 20ff3a17434573410db1986903e51055f0cb255e Mon Sep 17 00:00:00 2001 From: =?utf8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Fri, 24 May 2024 04:28:27 -0400 Subject: [PATCH] Add missing word (#45) --- book/src/04_traits/05_trait_bounds.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.45.2