diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2020-01-16 11:32:50 -0800 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2020-01-16 11:32:50 -0800 |
| commit | 029a9c625371e756d93024efd3deb7636a90f8f8 (patch) | |
| tree | fb23999c86fbaf213534fc85f0ca5987399e53ee /src/librustc_error_codes/error_codes | |
| parent | 00e262689599a6a753bbf7ce8786e07ed100d238 (diff) | |
| download | rust-029a9c625371e756d93024efd3deb7636a90f8f8.tar.gz rust-029a9c625371e756d93024efd3deb7636a90f8f8.zip | |
review comments
Diffstat (limited to 'src/librustc_error_codes/error_codes')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0746.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0746.md b/src/librustc_error_codes/error_codes/E0746.md index 041061f3380..16b2722f0ea 100644 --- a/src/librustc_error_codes/error_codes/E0746.md +++ b/src/librustc_error_codes/error_codes/E0746.md @@ -13,7 +13,7 @@ impl T for S { } // Having the trait `T` as return type is invalid because -// bare trait objects do not have a statically known size: +// unboxed trait objects do not have a statically known size: fn foo() -> dyn T { S(42) } |
