Skip to content

Commit

Permalink
Merge pull request #844 from mkantor/patch-1
Browse files Browse the repository at this point in the history
Fix mis-capitalization of type name.
  • Loading branch information
ehuss committed Jul 2, 2020
2 parents 8c31315 + fd10e70 commit 0ea7bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/trait-object.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For example, given a trait `Trait`, the following are all trait objects:
Two trait object types alias each other if the base traits alias each other and
if the sets of auto traits are the same and the lifetime bounds are the same.
For example, `dyn Trait + Send + UnwindSafe` is the same as
`dyn Trait + Unwindsafe + Send`.
`dyn Trait + UnwindSafe + Send`.

Due to the opaqueness of which concrete type the value is of, trait objects are
[dynamically sized types]. Like all
Expand Down

0 comments on commit 0ea7bc4

Please sign in to comment.