Skip to content

Commit 606aa64

Browse files
committed
Update CHANGELOG
1 parent 6333100 commit 606aa64

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
- Improve error message for pipe (`->`) syntax. https://github.com/rescript-lang/rescript/pull/7520
3838
- Improve a few error messages around various subtyping issues. https://github.com/rescript-lang/rescript/pull/7404
3939
- In module declarations, accept the invalid syntax `M = {...}` and format it to `M : {...}`. https://github.com/rescript-lang/rescript/pull/7527
40+
- Improve doc comment formatting to match the style of multiline comments. https://github.com/rescript-lang/rescript/pull/7529
4041

4142
#### :house: Internal
4243

Example.res

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
type rec expression =
2+
| /** non-negative integer constant */ Numeral(float)
3+
| /** Addition [e1 + e2] */ Plus(expression, expression)
4+
5+
/** doc comment */
6+
7+
// comment
8+
let a = 1

0 commit comments

Comments
 (0)