about summary refs log tree commit diff
path: root/src/test/ui/missing_debug_impls.stderr
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-07-22 15:32:18 +0200
committerGitHub <noreply@github.com>2019-07-22 15:32:18 +0200
commit17ddfbe49ce9ebd64ee6da3d963c24db571afd40 (patch)
treee8077eda78d00df9e23dd3ce7ae9c1f903202566 /src/test/ui/missing_debug_impls.stderr
parent5a20745c96c6e39fb45a9d47e350b2569ec5673b (diff)
parent0385d64d197c0200ce089d2108ded2d43de91c7a (diff)
downloadrust-17ddfbe49ce9ebd64ee6da3d963c24db571afd40.tar.gz
rust-17ddfbe49ce9ebd64ee6da3d963c24db571afd40.zip
Rollup merge of #62810 - fakenine:normalize_use_of_backticks_compiler_messages_p10, r=Centril
normalize use of backticks in compiler messages for librustc_lint

https://github.com/rust-lang/rust/issues/60532
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;