Skip to content

Commit 7926f66

Browse files
committed
Update CHANGES
1 parent e512110 commit 7926f66

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ profile. This started with version 0.26.0.
1616
only use punning when it exists in the source.
1717
This also applies to `let%ext` bindings (#2747, @WardBrian).
1818

19+
- Support the unnamed functor parameters syntax in module types (#2755, @Julow)
20+
```ocaml
21+
module type F = ARG -> S
22+
```
23+
The following lines are now formatted as they are in the source file:
24+
```ocaml
25+
module M : (_ : S) -> (_ : S) -> S = N
26+
module M : S -> S -> S = N
27+
(* The preceding two lines are no longer turned into this: *)
28+
module M : (_ : S) (_ : S) -> S = N
29+
```
30+
1931
### Fixed
2032

2133
- Fix dropped comment in `(function _ -> x (* cmt *))` (#2739, @Julow)

0 commit comments

Comments
 (0)