aboutsummaryrefslogtreecommitdiff
path: root/files/ja
diff options
context:
space:
mode:
authorYosuke Ota <otameshiyo23@gmail.com>2021-05-04 13:22:40 +0900
committerGitHub <noreply@github.com>2021-05-04 13:22:40 +0900
commite9db02793c71cf17fe29ddf113390549a614b9c0 (patch)
tree966a7d83ef0b12d7514dd7c7a9f732aad26b5f06 /files/ja
parent8f52ddc369f932cc6b7159df884585970e977440 (diff)
downloadtranslated-content-e9db02793c71cf17fe29ddf113390549a614b9c0.tar.gz
translated-content-e9db02793c71cf17fe29ddf113390549a614b9c0.tar.bz2
translated-content-e9db02793c71cf17fe29ddf113390549a614b9c0.zip
Update index.html (#578)
Diffstat (limited to 'files/ja')
-rw-r--r--files/ja/web/javascript/guide/regular_expressions/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/guide/regular_expressions/index.html b/files/ja/web/javascript/guide/regular_expressions/index.html
index a6a571bb88..3f6c141829 100644
--- a/files/ja/web/javascript/guide/regular_expressions/index.html
+++ b/files/ja/web/javascript/guide/regular_expressions/index.html
@@ -313,7 +313,7 @@ translation_of: Web/JavaScript/Guide/Regular_Expressions
<tr>
<td><a href="#special-white-space" id="special-white-space" name="special-white-space"><code>\s</code></a></td>
<td>
- <p>スペース、タブ、改ページ、改行を含むホワイトスペース文字にマッチします。<code>[ \f\n\r\t\v​\u00a0\u1680​\u180e\u2000​-\u200a​\u2028\u2029\u202f\u205f​\u3000\ufeff]</code> に相当します。</p>
+ <p>スペース、タブ、改ページ、改行を含むホワイトスペース文字にマッチします。<code>[ \f\n\r\t\v\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]</code> に相当します。</p>
<p>例えば <code>/\s\w*/</code> は "foo bar" の ' bar' にマッチします。</p>
</td>