Skip to content

Commit 4ce96dd

Browse files
authored
Fix typo (#15917)
1 parent 08f3796 commit 4ce96dd

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -350,23 +350,23 @@ function fn() {
350350
return (
351351
/**
352352
* @type {...}
353-
*/ expresssion
353+
*/ expression
354354
)
355355
}
356356

357357
// Prettier 3.0.0
358358
function fn() {
359359
return /**
360360
* @type {...}
361-
*/ expresssion;
361+
*/ expression;
362362
}
363363

364364
// Prettier 3.0.1
365365
function fn() {
366366
return (
367367
/**
368368
* @type {...}
369-
*/ expresssion
369+
*/ expression
370370
);
371371
}
372372
```
@@ -1694,7 +1694,7 @@ interface Foo {
16941694
<MyComponent
16951695
{{! this is a comment for arg 1}}
16961696
@arg1="hello"
1697-
{{on "clik" this.modify}}
1697+
{{on "click" this.modify}}
16981698
@arg2="hello"
16991699
{{! this is a comment for arg 3}}
17001700
@arg3="hello"
@@ -1711,7 +1711,7 @@ interface Foo {
17111711
@arg4="hello"
17121712
@arg5="hello"
17131713
...arguments
1714-
{{on "clik" this.modify}}
1714+
{{on "click" this.modify}}
17151715
{{! this is a comment for arg 1}}
17161716
{{! this is a comment for arg 3}}
17171717
{{! this is a comment for arg 5}}
@@ -1720,7 +1720,7 @@ interface Foo {
17201720
<MyComponent
17211721
{{! this is a comment for arg 1}}
17221722
@arg1="hello"
1723-
{{on "clik" this.modify}}
1723+
{{on "click" this.modify}}
17241724
@arg2="hello"
17251725
{{! this is a comment for arg 3}}
17261726
@arg3="hello"

0 commit comments

Comments
 (0)