about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/diagnostic_list.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/diagnostic_list.rs b/src/libsyntax/diagnostic_list.rs
index 3246dc47701..bb7988e64bc 100644
--- a/src/libsyntax/diagnostic_list.rs
+++ b/src/libsyntax/diagnostic_list.rs
@@ -250,7 +250,7 @@ An unstable feature was used.
 Erroneous code example:
 
 ```compile_fail,E658
-#[repr(u128)] // error: use of unstable library feature 'i128'
+#[repr(u128)] // error: use of unstable library feature 'repr128'
 enum Foo {
     Bar(u64),
 }
@@ -264,7 +264,7 @@ If you're using a nightly version of rustc, just add the corresponding feature
 to be able to use it:
 
 ```
-#![feature(repri128)]
+#![feature(repr128)]
 
 #[repr(u128)] // ok!
 enum Foo {