diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-01-13 17:06:19 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-13 17:06:19 +0000 |
commit | 7ea7de338f1c8ad1e89600e04570f03c2688c0c0 (patch) | |
tree | ebd05b4c0f0d91eda62d2767780646f95835270b /crates/ra_assists | |
parent | 27abd4a1a57bba47c717cb55e4719d69f2c5eb5c (diff) | |
parent | c5c5f4260b4ab1a03d2d3f7a616202369adc9ade (diff) |
Merge #2825
2825: Some clippy lints r=matklad a=kjeremy
Co-authored-by: kjeremy <[email protected]>
Diffstat (limited to 'crates/ra_assists')
-rw-r--r-- | crates/ra_assists/src/assists/add_custom_impl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/assists/add_custom_impl.rs b/crates/ra_assists/src/assists/add_custom_impl.rs index 037306fd6..9b8955710 100644 --- a/crates/ra_assists/src/assists/add_custom_impl.rs +++ b/crates/ra_assists/src/assists/add_custom_impl.rs | |||
@@ -10,7 +10,7 @@ use ra_syntax::{ | |||
10 | TextRange, TextUnit, | 10 | TextRange, TextUnit, |
11 | }; | 11 | }; |
12 | 12 | ||
13 | const DERIVE_TRAIT: &'static str = "derive"; | 13 | const DERIVE_TRAIT: &str = "derive"; |
14 | 14 | ||
15 | // Assist: add_custom_impl | 15 | // Assist: add_custom_impl |
16 | // | 16 | // |