From 190de695f58e9cb71d9b799b13570b33f4422363 Mon Sep 17 00:00:00 2001 From: Kelvin Ly Date: Fri, 15 May 2015 00:07:01 -0400 Subject: [PATCH] Add backticks around language keyword --- src/librustc_typeck/diagnostics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs index 10d23c36c80..58d09632741 100644 --- a/src/librustc_typeck/diagnostics.rs +++ b/src/librustc_typeck/diagnostics.rs @@ -367,7 +367,7 @@ it has been disabled for now. E0197: r##" Inherent implementations (one that do not implement a trait but provide methods associated with a type) are always safe because they are not -implementing an unsafe trait. Removing the unsafe keyword from the inherent +implementing an unsafe trait. Removing the `unsafe` keyword from the inherent implementation will resolve this error. ```