diff options
Diffstat (limited to 'crates/ide/src')
-rw-r--r-- | crates/ide/src/hover.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide/src/hover.rs b/crates/ide/src/hover.rs index 69b828f47..9a605b09d 100644 --- a/crates/ide/src/hover.rs +++ b/crates/ide/src/hover.rs | |||
@@ -3417,7 +3417,7 @@ impl<T> Foo<T$0> {} | |||
3417 | ``` | 3417 | ``` |
3418 | "#]], | 3418 | "#]], |
3419 | ); | 3419 | ); |
3420 | // lifetimes aren't being substituted yet | 3420 | // lifetimes bounds arent being tracked yet |
3421 | check( | 3421 | check( |
3422 | r#" | 3422 | r#" |
3423 | struct Foo<T>(T); | 3423 | struct Foo<T>(T); |
@@ -3427,7 +3427,7 @@ impl<T: 'static> Foo<T$0> {} | |||
3427 | *T* | 3427 | *T* |
3428 | 3428 | ||
3429 | ```rust | 3429 | ```rust |
3430 | T: {error} | 3430 | T |
3431 | ``` | 3431 | ``` |
3432 | "#]], | 3432 | "#]], |
3433 | ); | 3433 | ); |