aboutsummaryrefslogtreecommitdiff
path: root/lib/src/lints/eta_reduction.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/lints/eta_reduction.rs')
-rw-r--r--lib/src/lints/eta_reduction.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/lints/eta_reduction.rs b/lib/src/lints/eta_reduction.rs
index 9df3f1e..454c78f 100644
--- a/lib/src/lints/eta_reduction.rs
+++ b/lib/src/lints/eta_reduction.rs
@@ -67,7 +67,7 @@ impl Rule for EtaReduction {
67 let message = 67 let message =
68 format!( 68 format!(
69 "Found eta-reduction: `{}`", 69 "Found eta-reduction: `{}`",
70 replacement.text().to_string() 70 replacement.text()
71 ); 71 );
72 Some(self.report().suggest(at, message, Suggestion::new(at, replacement))) 72 Some(self.report().suggest(at, message, Suggestion::new(at, replacement)))
73 } else { 73 } else {
@@ -81,6 +81,6 @@ fn mentions_ident(ident: &Ident, node: &SyntaxNode) -> bool {
81 if let Some(node_ident) = Ident::cast(node.clone()) { 81 if let Some(node_ident) = Ident::cast(node.clone()) {
82 node_ident.as_str() == ident.as_str() 82 node_ident.as_str() == ident.as_str()
83 } else { 83 } else {
84 node.children().any(|child| mentions_ident(&ident, &child)) 84 node.children().any(|child| mentions_ident(ident, &child))
85 } 85 }
86} 86}