rust/crates/ra_assists/src
Matthias Krüger 29d3d04227 assists: change_return_type_to_result: clarify assist description
I had a -> Option<PathBuf> fn, which I wanted to change to Result<PathBuf, _>, but despite advertising to do so, the assist did not
change the result type to Result<PathBuf, _> but instead just wrapped it in a Result: <Result<Option<PathBuf>, _>.

I changed the assist description to "Wrap return type in Result" to clarify that the assist only wraps the preexisting type and does
not do any deep Option-to-Result refactoring.
2020-07-22 22:44:31 +02:00
..
handlers assists: change_return_type_to_result: clarify assist description 2020-07-22 22:44:31 +02:00
tests Unify naming of generating assists 2020-07-03 19:32:18 +02:00
utils Expose find_insert_use_container 2020-06-13 19:05:46 +02:00
assist_config.rs Move allow list into AssistConfig 2020-07-15 09:45:30 -04:00
assist_context.rs Move allow list into AssistConfig 2020-07-15 09:45:30 -04:00
ast_transform.rs Make SemanticsScope non-generic 2020-07-01 09:34:45 +03:00
lib.rs Move allow list into AssistConfig 2020-07-15 09:45:30 -04:00
tests.rs Move allow list into AssistConfig 2020-07-15 09:45:30 -04:00
utils.rs Follow matklad suggestions 2020-06-29 01:18:50 +03:00