Skip to content

Commit 6147356

Browse files
Merge pull request #844 from mkantor/patch-1
Fix mis-capitalization of type name.
2 parents b65c5ee + 8b09776 commit 6147356

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/trait-object.md

Lines changed: 1 addition & 1 deletion
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)