about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
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() {}
 ```