Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/hover/tests.rs')
| -rw-r--r-- | crates/ide/src/hover/tests.rs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/crates/ide/src/hover/tests.rs b/crates/ide/src/hover/tests.rs index 463cd58e48..e684b77c4f 100644 --- a/crates/ide/src/hover/tests.rs +++ b/crates/ide/src/hover/tests.rs @@ -4125,20 +4125,20 @@ foo_macro!( ); "#, expect![[r#" - *[`Foo`]* + *[`Foo`]* - ```rust - test - ``` + ```rust + test + ``` - ```rust - pub struct Foo - ``` + ```rust + pub struct Foo + ``` - --- + --- - Doc comment for [`Foo`](https://docs.rs/test/*/test/struct.Foo.html) - "#]], + Doc comment for [`Foo`](https://doc.rust-lang.org/nightly/test/struct.Foo.html) + "#]], ); } @@ -4150,19 +4150,19 @@ fn hover_intra_in_attr() { pub struct Foo; "#, expect![[r#" - *[`Foo`]* + *[`Foo`]* - ```rust - test - ``` + ```rust + test + ``` - ```rust - pub struct Foo - ``` + ```rust + pub struct Foo + ``` - --- + --- - Doc comment for [`Foo`](https://docs.rs/test/*/test/struct.Foo.html) - "#]], + Doc comment for [`Foo`](https://doc.rust-lang.org/nightly/test/struct.Foo.html) + "#]], ); } |