1
Fork 0

Improve long explanation for E0542 and E0546

This commit is contained in:
Jesus Rubio 2021-02-11 16:26:07 +01:00
parent 218bf8d765
commit a99d869e6c
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ fn _stable_const_fn() {}
fn _deprecated_fn() {} fn _deprecated_fn() {}
``` ```
To fix the issue you need to provide the `since` field. To fix this issue, you need to provide the `since` field. Example:
``` ```
#![feature(staged_api)] #![feature(staged_api)]

View file

@ -13,7 +13,7 @@ fn unstable_fn() {}
fn stable_fn() {} fn stable_fn() {}
``` ```
To fix the issue you need to provide the `feature` field. To fix this issue, you need to provide the `feature` field. Example:
``` ```
#![feature(staged_api)] #![feature(staged_api)]