master
Lucas Duailibe 2019-05-08 13:09:57 -03:00
parent 58b08c9915
commit b44748eecb
1 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ Examples:
start with \* weren't flagged correctly and the subsequent parenthesis were start with \* weren't flagged correctly and the subsequent parenthesis were
stripped. Prettier master fixes this issue. stripped. Prettier master fixes this issue.
<!-- prettier-ignore --\> <!-- prettier-ignore -->
```js ```js
// Input // Input
const style =/** const style =/**
@ -169,7 +169,7 @@ Examples:
*/({ */({
width, width,
}); });
// Output (Prettier stable) // Output (Prettier stable)
const style =/** const style =/**
* @type {{ * @type {{
@ -178,7 +178,7 @@ Examples:
*/ { */ {
width, width,
}; };
// Output (Prettier master) // Output (Prettier master)
const style =/** const style =/**
* @type {{ * @type {{