diff options
author | Lukas Wirth <[email protected]> | 2021-01-01 23:05:51 +0000 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-01-04 11:24:47 +0000 |
commit | 47900dd3bc1cca74e06a3ac1f587e92e352fbd42 (patch) | |
tree | 61bbf0f03da85b42229a103203d5840fbbba3048 /crates/hir_ty | |
parent | 5b86ff3e91838e58397ec39502d85056e46fcfcb (diff) |
Impl hovering for TypeParams
Diffstat (limited to 'crates/hir_ty')
-rw-r--r-- | crates/hir_ty/src/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/display.rs b/crates/hir_ty/src/display.rs index 0e827a29e..a54225c18 100644 --- a/crates/hir_ty/src/display.rs +++ b/crates/hir_ty/src/display.rs | |||
@@ -595,7 +595,7 @@ impl HirDisplay for FnSig { | |||
595 | } | 595 | } |
596 | } | 596 | } |
597 | 597 | ||
598 | fn write_bounds_like_dyn_trait( | 598 | pub fn write_bounds_like_dyn_trait( |
599 | predicates: &[GenericPredicate], | 599 | predicates: &[GenericPredicate], |
600 | f: &mut HirFormatter, | 600 | f: &mut HirFormatter, |
601 | ) -> Result<(), HirDisplayError> { | 601 | ) -> Result<(), HirDisplayError> { |