diff --git a/src/librustc_error_codes/error_codes/E0749.md b/src/librustc_error_codes/error_codes/E0749.md index 962da0eda08f..5b6bfe75cfc9 100644 --- a/src/librustc_error_codes/error_codes/E0749.md +++ b/src/librustc_error_codes/error_codes/E0749.md @@ -18,7 +18,7 @@ Negative impls are not allowed to have any items. Negative impls declare that a trait is **not** implemented (and never will be) and hence there is no need to specify the values for trait methods or other items. -One way to fix this is to remove the items in negative impls. +One way to fix this is to remove the items in negative impls: ``` # #![feature(negative_impls)]