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
stripped. Prettier master fixes this issue.
<!-- prettier-ignore --\>
<!-- prettier-ignore -->
```js
// Input
const style =/**
@ -169,7 +169,7 @@ Examples:
*/({
width,
});
// Output (Prettier stable)
const style =/**
* @type {{
@ -178,7 +178,7 @@ Examples:
*/ {
width,
};
// Output (Prettier master)
const style =/**
* @type {{