Skip to content

Commit

Permalink
fix(function-scope): fix typo (#1712)
Browse files Browse the repository at this point in the history
* fix(function-scope): fix typo

* Update README.md
  • Loading branch information
azu authored Feb 5, 2024
1 parent 325c600 commit 516d294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/basic/function-scope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ myCounter(); // => 2
const newCounter = createCounter();
newCounter(); // => 1
newCounter(); // => 2
// `myCounter`と`newCounter`は別々の状態持っている
// `myCounter`と`newCounter`は別々の状態を持っている
myCounter(); // => 3
newCounter(); // => 3
```
Expand Down

0 comments on commit 516d294

Please # to comment.