Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Changes!

+13 -1
+13 -1
CHANGELOG.md
··· 230 230 231 231 ### Formatter 232 232 233 - - Changed the formatting of function captures with a single hole to remove it. 233 + - Redundant function captures that take no additional arguments are now 234 + rewritten to not use the function capture syntax. 235 + 236 + ```gleam 237 + some_module.some_function(_) 238 + ``` 239 + 240 + This code is reformatted like so: 241 + 242 + ```gleam 243 + some_module.some_function 244 + ``` 245 + 234 246 ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 235 247 236 248 ### Bug fixes