Skip to content

Commit 0ea7bc4

Browse files
authored
Merge pull request #844 from mkantor/patch-1
Fix mis-capitalization of type name.
2 parents 8c31315 + fd10e70 commit 0ea7bc4

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)