aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-03-13 19:19:39 +0900
committerGitHub <noreply@github.com>2021-03-13 19:19:39 +0900
commit07de520b50b56fc9a82849fdf9164e6a5de8bfc1 (patch)
tree482ddad7d56070a4189eb2b253bbf24e93002c40 /files/ja/web
parentf738431e63bee11895cfff91e82cbda0f439122f (diff)
parentf107962d3f0e90061e707e0c1d14c33679a3ab9a (diff)
downloadtranslated-content-07de520b50b56fc9a82849fdf9164e6a5de8bfc1.tar.gz
translated-content-07de520b50b56fc9a82849fdf9164e6a5de8bfc1.tar.bz2
translated-content-07de520b50b56fc9a82849fdf9164e6a5de8bfc1.zip
Merge pull request #8 from mtane0412/patch-1
Typo
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/javascript/reference/statements/switch/index.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/files/ja/web/javascript/reference/statements/switch/index.html b/files/ja/web/javascript/reference/statements/switch/index.html
index 91960fb4ca..9d2d33b627 100644
--- a/files/ja/web/javascript/reference/statements/switch/index.html
+++ b/files/ja/web/javascript/reference/statements/switch/index.html
@@ -86,9 +86,7 @@ console.log("Is there anything else you'd like?");
<h3 id="What_happens_if_I_forgot_a_break" name="What_happens_if_I_forgot_a_break"><code>break</code> を置かないとどうなるか</h3>
-<p><code>break</code> を置かな買った場合、スクリプトは基準を満たす <code>case</code> から実行され、その後の <code>case</code> も</p>
-
-<p>条件に合うかに関係なく実行されます。</p>
+<p><code>break</code> を置かなかった場合、スクリプトは基準を満たす <code>case</code> から実行され、その後の <code>case</code> も条件に合うかに関係なく実行されます。</p>
<p>こちらの例をご覧ください。</p>