Skip to content

フォーマット文字列の数値に関する表記の変更 #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions language-snippets.ent
Original file line number Diff line number Diff line change
Expand Up @@ -3163,19 +3163,19 @@ local: {
<row>
<entry><literal>b</literal></entry>
<entry>
引数は数値として扱われ、バイナリ値として表現されます。
引数は整数として扱われ、バイナリ値として表現されます。
</entry>
</row>
<row>
<entry><literal>c</literal></entry>
<entry>
引数は数値として扱われ、ASCII文字として表現されます。
引数は整数として扱われ、ASCII文字として表現されます。
</entry>
</row>
<row>
<entry><literal>d</literal></entry>
<entry>
引数は数値として扱われ、(符号付き)小数値として表現されます
引数は整数として扱われ、(符号付き)10進数値として表現されます
</entry>
</row>
<row>
Expand All @@ -3194,13 +3194,13 @@ local: {
<row>
<entry><literal>f</literal></entry>
<entry>
引数は小数として扱われ、浮動小数値として表現されます(ロケールを考慮します)。
引数は小数として扱われ、浮動小数点数値として表現されます(ロケールを考慮します)。
</entry>
</row>
<row>
<entry><literal>F</literal></entry>
<entry>
引数は小数として扱われ、浮動小数値として表現されます(ロケールを考慮しません)。
引数は小数として扱われ、浮動小数点数値として表現されます(ロケールを考慮しません)。
</entry>
</row>
<row>
Expand Down Expand Up @@ -3250,7 +3250,7 @@ local: {
<row>
<entry><literal>o</literal></entry>
<entry>
引数は数値として扱われ、8進数値として表現されます。
引数は整数として扱われ、8進数値として表現されます。
</entry>
</row>
<row>
Expand All @@ -3262,19 +3262,19 @@ local: {
<row>
<entry><literal>u</literal></entry>
<entry>
引数は数値として扱われ、符号なし小数値として表現されます
引数は整数として扱われ、符号なし10進数値として表現されます
</entry>
</row>
<row>
<entry><literal>x</literal></entry>
<entry>
引数は数値として扱われ、16進数値(小文字)として表現されます。
引数は整数として扱われ、16進数値(小文字)として表現されます。
</entry>
</row>
<row>
<entry><literal>X</literal></entry>
<entry>
引数は数値として扱われ、16進数値(大文字)として表現されます。
引数は整数として扱われ、16進数値(大文字)として表現されます。
</entry>
</row>
</tbody>
Expand Down