about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorJesus Rubio <jesusprubio@gmail.com>2021-02-06 18:05:21 +0100
committerJesus Rubio <jesusprubio@gmail.com>2021-02-06 18:05:21 +0100
commit9be5d2d01f3600af0664279d8d8facaa2bb8bfbb (patch)
tree2221718292ae1c2e0351e04278ec96c4e528dba0 /compiler
parent956c81355a6982bcf5a072c24ffa7b47f0315c4b (diff)
downloadrust-9be5d2d01f3600af0664279d8d8facaa2bb8bfbb.tar.gz
rust-9be5d2d01f3600af0664279d8d8facaa2bb8bfbb.zip
Format fixes
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0542.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0542.md b/compiler/rustc_error_codes/src/error_codes/E0542.md
index 01c070009e8..929b21b8b12 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0542.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0542.md
@@ -1,6 +1,5 @@
 The `since` value is missing in a stability attribute.
 
-
 Erroneous code example:
 
 ```compile_fail,E0542
@@ -20,7 +19,7 @@ fn _stable_const_fn() {}
 fn _deprecated_fn() {}
 ```
 
-To fix the issue you need to provide the since field of the feature.
+To fix the issue you need to provide the `since` field.
 
 ```
 #![feature(staged_api)]