@@ -1213,7 +1213,7 @@ struct S {
12131213
12141214[discrete]
12151215=== `extract_variable`
1216- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/extract_variable.rs#L11 [extract_variable.rs]
1216+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/extract_variable.rs#L12 [extract_variable.rs]
12171217
12181218Extracts subexpression into a variable.
12191219
@@ -1479,7 +1479,7 @@ impl Person {
14791479
14801480[discrete]
14811481=== `generate_delegate_trait`
1482- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_delegate_trait.rs#L28 [generate_delegate_trait.rs]
1482+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_delegate_trait.rs#L29 [generate_delegate_trait.rs]
14831483
14841484Generate delegate trait implementation for `StructField`s.
14851485
@@ -2384,7 +2384,7 @@ fn main() -> () {
23842384
23852385[discrete]
23862386=== `introduce_named_generic`
2387- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/introduce_named_generic.rs#L8 [introduce_named_generic.rs]
2387+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/introduce_named_generic.rs#L9 [introduce_named_generic.rs]
23882388
23892389Replaces `impl Trait` function argument with the named generic.
23902390
@@ -3248,7 +3248,7 @@ fn handle(action: Action) {
32483248
32493249[discrete]
32503250=== `replace_is_some_with_if_let_some`
3251- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/replace_is_method_with_if_let_method.rs#L8 [replace_is_method_with_if_let_method.rs]
3251+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/replace_is_method_with_if_let_method.rs#L9 [replace_is_method_with_if_let_method.rs]
32523252
32533253Replace `if x.is_some()` with `if let Some(_tmp) = x` or `if x.is_ok()` with `if let Ok(_tmp) = x`.
32543254
@@ -3815,7 +3815,7 @@ fn main() {
38153815
38163816[discrete]
38173817=== `wrap_return_type_in_result`
3818- **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/wrap_return_type_in_result.rs#L14 [wrap_return_type_in_result.rs]
3818+ **Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/wrap_return_type_in_result.rs#L16 [wrap_return_type_in_result.rs]
38193819
38203820Wrap the function's return type into Result.
38213821
0 commit comments