Skip to content

Commit c03d74f

Browse files
committed
Fix disallowed identifier names in changelog sample
1 parent 36e0ed5 commit c03d74f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88
* Add class instance fields support:
99
```js
1010
class X {
11-
public = 1;
12-
#private = 2;
11+
pub = 1;
12+
#priv = 2;
1313
}
1414
```
1515
* Add class static fields support:
1616
```js
1717
class X {
18-
static public = 1;
19-
static #private = 2;
18+
static pub = 1;
19+
static #priv = 2;
2020
}
2121
```
2222
* Add `export * as ns` support when `sourceType` is 'module':

0 commit comments

Comments
 (0)