Add missing word (#45)

This commit is contained in:
Onè 2024-05-24 04:28:27 -04:00 committed by GitHub
parent d2be52f32f
commit 20ff3a1743
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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<T>(n: T)