Skip to content

Commit

Permalink
Fix mis-capitalization of type name.
Browse files Browse the repository at this point in the history
`UnwindSafe` was typo'd as `Unwindsafe`.
  • Loading branch information
mkantor authored Jul 2, 2020
1 parent 8c31315 commit fd10e70
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 fd10e70

Please sign in to comment.