@@ -168,7 +168,7 @@ struct Point<'a> {
168168
169169[discrete]
170170=== `add_missing_match_arms`
171- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/add_missing_match_arms.rs#L15 [add_missing_match_arms.rs]
171+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/add_missing_match_arms.rs#L16 [add_missing_match_arms.rs]
172172
173173Adds missing clauses to a `match` expression.
174174
@@ -1476,7 +1476,7 @@ impl Person {
14761476
14771477[discrete]
14781478=== `inline_call`
1479- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_call.rs#L156 [inline_call.rs]
1479+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_call.rs#L159 [inline_call.rs]
14801480
14811481Inlines a function or method body creating a `let` statement per parameter unless the parameter
14821482can be inlined. The parameter will be inlined either if it the supplied argument is a simple local
@@ -1502,7 +1502,7 @@ fn foo(name: Option<&str>) {
15021502
15031503[discrete]
15041504=== `inline_into_callers`
1505- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_call.rs#L24 [inline_call.rs]
1505+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_call.rs#L25 [inline_call.rs]
15061506
15071507Inline a function or method body into all of its callers where possible, creating a `let` statement per parameter
15081508unless the parameter can be inlined. The parameter will be inlined either if it the supplied argument is a simple local
@@ -1568,7 +1568,7 @@ fn main() {
15681568
15691569[discrete]
15701570=== `inline_type_alias`
1571- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_type_alias.rs#L91 [inline_type_alias.rs]
1571+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_type_alias.rs#L105 [inline_type_alias.rs]
15721572
15731573Replace a type alias with its concrete type.
15741574
@@ -1593,7 +1593,7 @@ fn main() {
15931593
15941594[discrete]
15951595=== `inline_type_alias_uses`
1596- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_type_alias.rs#L19 [inline_type_alias.rs]
1596+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/inline_type_alias.rs#L24 [inline_type_alias.rs]
15971597
15981598Inline a type alias into all of its uses where possible.
15991599
@@ -1610,7 +1610,7 @@ fn foo() {
16101610
16111611.After
16121612```rust
1613- type A = i32;
1613+
16141614fn id(x: i32) -> i32 {
16151615 x
16161616};
@@ -1753,7 +1753,7 @@ fn main() {
17531753
17541754[discrete]
17551755=== `merge_imports`
1756- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/merge_imports.rs#L13 [merge_imports.rs]
1756+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/merge_imports.rs#L17 [merge_imports.rs]
17571757
17581758Merges two imports with a common prefix.
17591759
@@ -1832,7 +1832,7 @@ fn handle(action: Action) {
18321832
18331833[discrete]
18341834=== `move_bounds_to_where_clause`
1835- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/move_bounds.rs#L8 [move_bounds.rs]
1835+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/move_bounds.rs#L12 [move_bounds.rs]
18361836
18371837Moves inline type bounds to a where clause.
18381838
0 commit comments