1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-19 14:17:51 +02:00

Fix typo in associated-types.md (#1887)

A minor nitpick, but as someone new to the language I did spend a bit
more time than I'd like to admit trying to understand the meaning of
`allow` before realizing this is likely a typo. Maybe I still don't
understand, and in that case I'd appreciate a correction!
This commit is contained in:
Aaron M 2024-03-07 06:56:30 -07:00 committed by GitHub
parent 97ac0e7caf
commit 3ac3b301bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
# Associated Types
Associated types allow are placeholder types which are filled in by the trait
Associated types are placeholder types which are filled in by the trait
implementation.
```rust,editable