We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e7624 commit a26aef9Copy full SHA for a26aef9
crates/ide/src/hover.rs
@@ -177,7 +177,8 @@ pub(crate) fn hover(
177
}
178
179
let rest_pat = token.parent().and_then(ast::RestPat::cast)?;
180
- let record_pat_field_list = rest_pat.syntax().parent().and_then(ast::RecordPatFieldList::cast)?;
+ let record_pat_field_list =
181
+ rest_pat.syntax().parent().and_then(ast::RecordPatFieldList::cast)?;
182
183
let record_pat =
184
record_pat_field_list.syntax().parent().and_then(ast::RecordPat::cast)?;
0 commit comments