Skip to content

Commit a26aef9

Browse files
committed
fix formatting
1 parent 91e7624 commit a26aef9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/ide/src/hover.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ pub(crate) fn hover(
177177
}
178178

179179
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)?;
180+
let record_pat_field_list =
181+
rest_pat.syntax().parent().and_then(ast::RecordPatFieldList::cast)?;
181182

182183
let record_pat =
183184
record_pat_field_list.syntax().parent().and_then(ast::RecordPat::cast)?;

0 commit comments

Comments
 (0)