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
..
2020-07-21 10:50:24 +02:00
2020-07-17 12:04:10 +02:00
2020-07-21 17:55:17 +02:00
2020-07-21 09:57:46 +00:00
2020-07-16 14:29:57 +00:00
2020-07-20 15:37:50 -04:00
2020-07-14 14:58:10 +02:00
2020-07-20 18:01:42 +02:00
2020-07-18 16:40:10 +02:00