Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dyn-trait-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ let fp = generic::<String>;
```
That is, the function item type is parameterized by some `T: Trait`.

In contrast, there will always only be only one `non_generic` function in
In contrast, there will always be only one `not_generic` function in
the resulting library. The base implementors of `Trait` must be typed-erased
into `dyn Trait + '_` before being passed to the function. The function type
is not parameterized by a generic type.
Expand Down