From 8858237136f9746bc7291d649ed198d1a043c73e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9D=92=84=F0=9D=92=8D=20=F0=9D=92=8A=20=F0=9D=92=84=20?= =?UTF-8?q?=F0=9D=92=86?= <131771046+clicelee@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:10:01 +0900 Subject: [PATCH 1/2] Docs: localize link to Amazon - Replaced the Yes24 link for "The Programmer's Brain" with an Amazon link for localization. --- en/code/examples/condition-name.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/code/examples/condition-name.md b/en/code/examples/condition-name.md index 42a07141..70ff11d9 100644 --- a/en/code/examples/condition-name.md +++ b/en/code/examples/condition-name.md @@ -30,7 +30,7 @@ In this code, anonymous functions and conditions are intricately intertwined. Th There are many contexts for the reader to consider at once, which reduces readability. [^1] -[^1]: According to [The Programmer's Brain](https://www.yes24.com/product/goods/105911017), the number of pieces of information that the human brain can store at one time is six. +[^1]: According to [The Programmer's Brain]([https://www.yes24.com/product/goods/105911017](https://www.amazon.com/Programmers-Brain-Every-Programmer-Cognition/dp/B09NDVG2DW/ref=sr_1_1?crid=9GGEWPMGSL8Y&dib=eyJ2IjoiMSJ9.AF5Dcf0-L-uK6TtJShyWO_10--nMWYYt347wx3dfFsot6wGbgpz_Mn5XMp9Yv-Dok-XO31xYrb3qcx4VHzmvgH2WwCwpwPSGcfleagpa3sw78VkagAXyim4LIjFL9VTTWZemu1tTng4B6rtuPrrOveuu77Eme6QUtqqaTe6Q9vHejb4QwlvkhMBL1-9f6ixQBnvYmqlgZeeB09xB5ottOCf79StZNty_Z70W876zMSg.oDUVogfe2uXKb3VZqJAvyqrmLnE8o9zJSs7gfNNfdwA&dib_tag=se&keywords=The+Programmer%27s+Brain%3A&qid=1738067574&s=books&sprefix=the+programmer%27s+brain+%2Cstripbooks-intl-ship%2C236&sr=1-1)), the number of pieces of information that the human brain can store at one time is six. ## ✏️ Work on Improving From 4bfc74234479f52ce7d924e3cf26bc414440b47b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9D=92=84=F0=9D=92=8D=20=F0=9D=92=8A=20=F0=9D=92=84=20?= =?UTF-8?q?=F0=9D=92=86?= <131771046+clicelee@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:13:06 +0900 Subject: [PATCH 2/2] Docs: Improve grammar for en docs - Revised grammar considering natural flow --- en/code/examples/submit-button.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/code/examples/submit-button.md b/en/code/examples/submit-button.md index 82e0fc02..35289043 100644 --- a/en/code/examples/submit-button.md +++ b/en/code/examples/submit-button.md @@ -11,8 +11,8 @@ It may also include a large number of branches in the implementation, making it The `` component below behaves differently depending on the user's permission. -- If the user's permission is read-only (`"viewer"`), the invite button is disabled and the animation is not played. -- If the user is a regular user, the invite button can be used and the animation is played. +- If the user's permission is read-only (`"viewer"`), the invite button is disabled and the animation does not play. +- If the user is a regular user, the invite button is enabled and the animation plays. ```tsx function SubmitButton() {