about summary refs log tree commit diff
path: root/src/test/ui/missing_debug_impls.stderr
diff options
context:
space:
mode:
authorSamy Kacimi <samy.kacimi@protonmail.ch>2019-07-19 00:05:23 +0200
committerSamy Kacimi <samy.kacimi@protonmail.ch>2019-07-21 11:47:24 +0200
commit0385d64d197c0200ce089d2108ded2d43de91c7a (patch)
treeb58577f7746a1a6f6bccbf2e90504b29740456aa /src/test/ui/missing_debug_impls.stderr
parent1301422a6c2e8916560b8cc2f0564f38d8858a75 (diff)
downloadrust-0385d64d197c0200ce089d2108ded2d43de91c7a.tar.gz
rust-0385d64d197c0200ce089d2108ded2d43de91c7a.zip
normalize use of backticks in compiler messages for librustc_lint
Diffstat (limited to 'src/test/ui/missing_debug_impls.stderr')
-rw-r--r--src/test/ui/missing_debug_impls.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/missing_debug_impls.stderr b/src/test/ui/missing_debug_impls.stderr
index bb8390a8f31..b9530587787 100644
--- a/src/test/ui/missing_debug_impls.stderr
+++ b/src/test/ui/missing_debug_impls.stderr
@@ -1,4 +1,4 @@
-error: type does not implement `fmt::Debug`; consider adding #[derive(Debug)] or a manual implementation
+error: type does not implement `fmt::Debug`; consider adding `#[derive(Debug)]` or a manual implementation
   --> $DIR/missing_debug_impls.rs:7:1
    |
 LL | pub enum A {}
@@ -10,7 +10,7 @@ note: lint level defined here
 LL | #![deny(missing_debug_implementations)]
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: type does not implement `fmt::Debug`; consider adding #[derive(Debug)] or a manual implementation
+error: type does not implement `fmt::Debug`; consider adding `#[derive(Debug)]` or a manual implementation
   --> $DIR/missing_debug_impls.rs:20:1
    |
 LL | pub struct Foo;