aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cli/src/main.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-01-13 17:06:19 +0000
committerGitHub <[email protected]>2020-01-13 17:06:19 +0000
commit7ea7de338f1c8ad1e89600e04570f03c2688c0c0 (patch)
treeebd05b4c0f0d91eda62d2767780646f95835270b /crates/ra_cli/src/main.rs
parent27abd4a1a57bba47c717cb55e4719d69f2c5eb5c (diff)
parentc5c5f4260b4ab1a03d2d3f7a616202369adc9ade (diff)
Merge #2825
2825: Some clippy lints r=matklad a=kjeremy Co-authored-by: kjeremy <[email protected]>
Diffstat (limited to 'crates/ra_cli/src/main.rs')
-rw-r--r--crates/ra_cli/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_cli/src/main.rs b/crates/ra_cli/src/main.rs
index 3808590ab..806612c2c 100644
--- a/crates/ra_cli/src/main.rs
+++ b/crates/ra_cli/src/main.rs
@@ -22,7 +22,7 @@ pub enum Verbosity {
22} 22}
23 23
24impl Verbosity { 24impl Verbosity {
25 fn is_verbose(&self) -> bool { 25 fn is_verbose(self) -> bool {
26 match self { 26 match self {
27 Verbosity::Verbose => true, 27 Verbosity::Verbose => true,
28 _ => false, 28 _ => false,