Skip to content

Commit ac67fb0

Browse files
giacomocavalierilpil
authored andcommitted
fix changelog
1 parent 141c08a commit ac67fb0

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@
267267

268268
- The formatting of long nested tuples has been improved.
269269
Previously the formatter would split only the last tuple:
270+
270271
```gleam
271272
#(#(wibble, wobble), #(some_long_tuple, passed_as_last_argument))
272273
// after format:
@@ -275,7 +276,9 @@
275276
passed_as_last_argument
276277
))
277278
```
279+
278280
But now it favours first splitting each element onto its own line:
281+
279282
```gleam
280283
#(#(wibble, wobble), #(some_long_tuple, passed_as_last_argument))
281284
// after format:
@@ -284,6 +287,11 @@
284287
#(some_long_tuple, passed_as_last_argument)
285288
)
286289
```
290+
291+
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
292+
293+
- Fixed a bug where some functions could be formatted to be longer than 80
294+
characters.
287295
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
288296

289297
### Bug fixes
@@ -334,10 +342,6 @@
334342
comments inside an incomplete case expression.
335343
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
336344

337-
- Fixed a bug where some functions could be formatted to be longer than 80
338-
characters.
339-
([Giacomo Cavalieri](https://github.com/giacomocavalieri))
340-
341345
- Fixed a bug where the "Extract function" could generate invalid code when
342346
triggered on a use statement inside a block.
343347
([Giacomo Cavalieri](https://github.com/giacomocavalieri))

0 commit comments

Comments
 (0)