diff options
author | Jeremy Kolb <[email protected]> | 2020-01-14 16:49:14 +0000 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2020-01-14 16:49:14 +0000 |
commit | 4cb82c334d98d7eb608d076fda95923647d61043 (patch) | |
tree | 022280d4db4a933ad44d1f80362d41386463346c /crates/ra_assists/src/assists/move_bounds.rs | |
parent | e406f2bed66cbe13ef6441a3fb84791a3ca09299 (diff) |
More UI friendly labels
Diffstat (limited to 'crates/ra_assists/src/assists/move_bounds.rs')
-rw-r--r-- | crates/ra_assists/src/assists/move_bounds.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/assists/move_bounds.rs b/crates/ra_assists/src/assists/move_bounds.rs index 3145d7625..6e6c1d67d 100644 --- a/crates/ra_assists/src/assists/move_bounds.rs +++ b/crates/ra_assists/src/assists/move_bounds.rs | |||
@@ -46,7 +46,7 @@ pub(crate) fn move_bounds_to_where_clause(ctx: AssistCtx<impl HirDatabase>) -> O | |||
46 | _ => return None, | 46 | _ => return None, |
47 | }; | 47 | }; |
48 | 48 | ||
49 | ctx.add_assist(AssistId("move_bounds_to_where_clause"), "move_bounds_to_where_clause", |edit| { | 49 | ctx.add_assist(AssistId("move_bounds_to_where_clause"), "Move to Where Clause", |edit| { |
50 | let new_params = type_param_list | 50 | let new_params = type_param_list |
51 | .type_params() | 51 | .type_params() |
52 | .filter(|it| it.type_bound_list().is_some()) | 52 | .filter(|it| it.type_bound_list().is_some()) |