diff --git a/text/3729-sized-hierarchy.md b/text/3729-sized-hierarchy.md index 4db7cc064bd..87ff491d049 100644 --- a/text/3729-sized-hierarchy.md +++ b/text/3729-sized-hierarchy.md @@ -379,7 +379,7 @@ backwards compatibility, depending on the bounds that would be introduced[^6]. parameter).. ```rust - auto trait Foo; + auto trait Foo {} fn size_of() { /* .. */ } // `Foo` bound is new! ``` @@ -397,7 +397,7 @@ backwards compatibility, depending on the bounds that would be introduced[^6]. parameter).. ```rust - auto trait Foo; + auto trait Foo {} fn size_of_val(x: val) { /* .. */ } // `Foo` bound is new! ```