···347347348348 ([Gavin Morrow](https://github.com/gavinmorrow))
349349350350+- The language server now has "Convert to documentation comment" and
351351+ "Convert to regular comment" code actions. For example:
352352+353353+ ```gleam
354354+ // Module description.
355355+ // Code action available here.
356356+357357+ // Comment before function.
358358+ // Another code action here.
359359+ pub fn wibble() {
360360+ // No code action here.
361361+ todo
362362+ }
363363+364364+ /// Doc comment.
365365+ /// Another code action here.
366366+ pub fn wobble () {
367367+ todo
368368+ }
369369+ ```
370370+371371+ Triggering the code actions in all of these places will result in:
372372+373373+ ```gleam
374374+ //// Module description.
375375+ //// Code action available here.
376376+377377+ /// Comment before function.
378378+ /// Another code action here.
379379+ pub fn wibble() {
380380+ // No code action here.
381381+ todo
382382+ }
383383+384384+ // Doc comment.
385385+ // Another code action here.
386386+ pub fn wobble () {
387387+ todo
388388+ }
389389+ ```
390390+391391+ ([Daniel Venable](https://github.com/DanielVenable))
392392+350393### Formatter
351394352395- Performance of the formatter has been improved.