From 66f5e08154afd3f490fffa5cdad2d83a05ae1515 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 9 Aug 2019 23:33:21 +0200 Subject: [PATCH] fmt --- clippy_lints/src/invalid_ref.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clippy_lints/src/invalid_ref.rs b/clippy_lints/src/invalid_ref.rs index 6cf7ab23b037..9c765be9d887 100644 --- a/clippy_lints/src/invalid_ref.rs +++ b/clippy_lints/src/invalid_ref.rs @@ -23,9 +23,9 @@ declare_clippy_lint! { const SUMMARY: &str = "invalid reference"; const ZERO_REF_HELP: &str = "Creation of a null reference is undefined behavior; \ - see https://doc.rust-lang.org/reference/behavior-considered-undefined.html"; + see https://doc.rust-lang.org/reference/behavior-considered-undefined.html"; const UNINIT_REF_HELP: &str = "Creation of an uninitialized reference is undefined behavior; \ - see https://doc.rust-lang.org/reference/behavior-considered-undefined.html"; + see https://doc.rust-lang.org/reference/behavior-considered-undefined.html"; declare_lint_pass!(InvalidRef => [INVALID_REF]);