1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-30 12:29:40 +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

View File

@ -41,7 +41,7 @@ fn main() {
`From<&str>` implementation for `Foo`. `From<&str>` implementation for `Foo`.
- Generic traits take types as "input", while associated types are a kind of - 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. types.
- In fact, Rust requires that at most one implementation of a trait match for - In fact, Rust requires that at most one implementation of a trait match for