From fd10e7043934711ef96b4dd2009db3e4d0182a33 Mon Sep 17 00:00:00 2001 From: Matt Kantor Date: Thu, 2 Jul 2020 14:50:45 -0700 Subject: [PATCH] Fix mis-capitalization of type name. `UnwindSafe` was typo'd as `Unwindsafe`. --- src/types/trait-object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/trait-object.md b/src/types/trait-object.md index 7e37e41cc..acc856563 100644 --- a/src/types/trait-object.md +++ b/src/types/trait-object.md @@ -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