Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Aug 9, 2019
1 parent fd3ab4d commit 66f5e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clippy_lints/src/invalid_ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit 66f5e08

Please sign in to comment.