1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-31 09:42:11 +02:00

Add missing closing quotes in generic-traits.md (#1952)

This commit is contained in:
Iván Budnik 2024-04-01 14:52:33 +01:00 committed by GitHub
parent b38d429e49
commit e2a4da2594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ fn main() {
`From<&str>` implementation for `Foo`.
- Generic traits take types as "input", while associated types are a kind of
"output type. A trait can have multiple implementations for different input
"output" type. A trait can have multiple implementations for different input
types.
- In fact, Rust requires that at most one implementation of a trait match for