diff options
author | Diana <[email protected]> | 2020-05-01 17:09:47 +0100 |
---|---|---|
committer | Diana <[email protected]> | 2020-05-01 17:09:47 +0100 |
commit | 375dd18dc0cc258f4e8c99a91b88030d32147965 (patch) | |
tree | def11229635420e18801d9aff3d258d990b23504 /crates/ra_syntax/src/ast | |
parent | a5f2b16366f027ad60c58266a66eb7fbdcbda9f9 (diff) |
Fix pub(self) visibility?
Clippy complained about it and it seems wrong
Diffstat (limited to 'crates/ra_syntax/src/ast')
-rw-r--r-- | crates/ra_syntax/src/ast/extensions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/extensions.rs b/crates/ra_syntax/src/ast/extensions.rs index f2ea5088e..45e3dd2d3 100644 --- a/crates/ra_syntax/src/ast/extensions.rs +++ b/crates/ra_syntax/src/ast/extensions.rs | |||
@@ -407,7 +407,7 @@ impl ast::Visibility { | |||
407 | } else if self.super_token().is_some() { | 407 | } else if self.super_token().is_some() { |
408 | VisibilityKind::PubSuper | 408 | VisibilityKind::PubSuper |
409 | } else if self.self_token().is_some() { | 409 | } else if self.self_token().is_some() { |
410 | VisibilityKind::PubSuper | 410 | VisibilityKind::PubSelf |
411 | } else { | 411 | } else { |
412 | VisibilityKind::Pub | 412 | VisibilityKind::Pub |
413 | } | 413 | } |