about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorJesus Rubio <jesusprubio@gmail.com>2021-02-06 19:45:43 +0100
committerJesus Rubio <jesusprubio@gmail.com>2021-02-06 19:45:43 +0100
commitac6c09a980ff0785f0be209c86cb6da563f0ad26 (patch)
tree5fa79b74171ae3b506b370e5f983345ecd10116f /compiler/rustc_error_codes/src
parent777582228c22824d7615a93bf042df910af601b0 (diff)
downloadrust-ac6c09a980ff0785f0be209c86cb6da563f0ad26.tar.gz
rust-ac6c09a980ff0785f0be209c86cb6da563f0ad26.zip
Typo fix
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0546.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0546.md b/compiler/rustc_error_codes/src/error_codes/E0546.md
index 11f2bebba43..0073357b5ea 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0546.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0546.md
@@ -19,10 +19,10 @@ To fix the issue you need to provide the `feature` field.
 #![feature(staged_api)]
 #![stable(since = "1.0.0", feature = "test")]
 
-#[unstable(feature = "unstable_fn", issue = "none")] // ok!!
+#[unstable(feature = "unstable_fn", issue = "none")] // ok!
 fn unstable_fn() {}
 
-#[stable(feature = "stable_fn", since = "1.0.0")] // ok!!
+#[stable(feature = "stable_fn", since = "1.0.0")] // ok!
 fn stable_fn() {}
 ```