Skip to content

Commit

Permalink
Update CHANGELOG.unreleased.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Mar 26, 2019
1 parent b8b1157 commit ba209c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ Examples:
<div *ngIf="isRendered | async"></div>
```
- JavaScript: Fix closure compiler typecasts ([#] by [@jridgewell])
- JavaScript: Fix closure compiler typecasts ([#5947] by [@jridgewell])
If a closing parenthesis followed an inner expression is cast, the typecast would wrap everything to the that following parenthesis.
If a closing parenthesis follows after a typecast in an inner expression, the typecast would wrap everything to the that following parenthesis.
<!-- prettier-ignore -->
```js
Expand All @@ -208,4 +208,4 @@ Examples:
// Output (Prettier master)
test(/** @type {!Array} */ (arrOrString).length);
test(/** @type {!Array} */ (arrOrString).length + 1);
```
```

0 comments on commit ba209c3

Please sign in to comment.