Skip to content

Commit fd10e70

Browse files
authored
Fix mis-capitalization of type name.
`UnwindSafe` was typo'd as `Unwindsafe`.
1 parent 8c31315 commit fd10e70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/trait-object.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ For example, given a trait `Trait`, the following are all trait objects:
4747
Two trait object types alias each other if the base traits alias each other and
4848
if the sets of auto traits are the same and the lifetime bounds are the same.
4949
For example, `dyn Trait + Send + UnwindSafe` is the same as
50-
`dyn Trait + Unwindsafe + Send`.
50+
`dyn Trait + UnwindSafe + Send`.
5151

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

0 commit comments

Comments
 (0)