···230230231231### Formatter
232232233233-- Changed the formatting of function captures with a single hole to remove it.
233233+- Redundant function captures that take no additional arguments are now
234234+ rewritten to not use the function capture syntax.
235235+236236+ ```gleam
237237+ some_module.some_function(_)
238238+ ```
239239+240240+ This code is reformatted like so:
241241+242242+ ```gleam
243243+ some_module.some_function
244244+ ```
245245+234246 ([Giacomo Cavalieri](https://github.com/giacomocavalieri))
235247236248### Bug fixes