Add docs to make tidy tests happy :')

This commit is contained in:
Maybe Waffle 2022-12-20 13:30:53 +00:00
parent 1c8bcf0d4e
commit 046a5679e3
9 changed files with 34 additions and 0 deletions

View file

@ -1,3 +1,8 @@
//! Implementation of "param name" inlay hints:
//! ```no_run
//! fn max(x: i32, y: i32) -> i32 { x + y }
//! _ = max(/*x*/4, /*y*/4);
//! ```
use either::Either;
use hir::{Callable, Semantics};
use ide_db::{base_db::FileRange, RootDatabase};