Skip to content

Commit

Permalink
[ja] 文字クラス\sの定義で半角空白が抜けていた
Browse files Browse the repository at this point in the history
  • Loading branch information
querykuma authored and mfuji09 committed Oct 4, 2024
1 parent 3ff5342 commit 8d42ed0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ l10n:
<td><code>\s</code></td>
<td>
<p>
ホワイトスペース 1 文字に一致します。例えば空白、タブ、改ページ、改行、その他の Unicode 空白文字などです。 <code>[\f\n\r\t\v\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]</code> に相当します。例えば <code>/\s\w*/</code> は "foo bar" の " bar" に一致します。
ホワイトスペース 1 文字に一致します。例えば空白、タブ、改ページ、改行、その他の Unicode 空白文字などです。 <code>[\f\n\r\t\v\u0020\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]</code> に相当します。例えば <code>/\s\w*/</code> は "foo bar" の " bar" に一致します。
</p>
</td>
</tr>
Expand Down

0 comments on commit 8d42ed0

Please sign in to comment.