Skip to content

Commit 6d2154e

Browse files
committed
cargo fmt
1 parent 82ae228 commit 6d2154e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

crates/ide/src/hover.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -964,13 +964,15 @@ fn main() { let foo_test = fo$0o(); }
964964
);
965965

966966
// use literal `crate` in path
967-
check(r#"
967+
check(
968+
r#"
968969
pub struct X;
969970
970971
fn foo() -> crate::X { X }
971972
972973
fn main() { f$0oo(); }
973-
"#, expect![[r#"
974+
"#,
975+
expect![[r#"
974976
*foo*
975977
976978
```rust
@@ -980,7 +982,8 @@ fn main() { f$0oo(); }
980982
```rust
981983
fn foo() -> crate::X
982984
```
983-
"#]]);
985+
"#]],
986+
);
984987
}
985988

986989
#[test]

0 commit comments

Comments
 (0)