Skip to content

Commit 20f6756

Browse files
author
Document updater
committed
Automated docs update
1 parent bdc6a9e commit 20f6756

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/casts.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
162162
明示的に引き起こすことが出来ます。しかし、いくつかの変換はキャストを必要とします。
163163
型強制は普及していて、大体の場合、害はないのですが、これらの &quot;真のキャスト&quot; は稀で、
164164
潜在的に危険です。ですから、キャストは <code>as</code> キーワードを用いて、明示的に
165-
呼び起こさなければなりません: <code>expr as Type</code></p>
165+
実行しなければなりません: <code>expr as Type</code></p>
166166
<!--
167167
True casts generally revolve around raw pointers and the primitive numeric
168168
types. Even though they're dangerous, these casts are infallible at runtime.
@@ -176,7 +176,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
176176
もしキャストが何か微妙なコーナーケースを引き起こしたとしても、
177177
何の指摘もされないでしょう。キャストは単に成功します。そうは言ったものの、
178178
キャストは型レベルで正しくなければなりません。でなければそのキャストは静的に
179-
防がれます。例えば、 <code>7u8 as bool</code> はコンパイルされません</p>
179+
防がれます。例えば、 <code>7u8 as bool</code> はコンパイルできません</p>
180180
<!--
181181
That said, casts aren't `unsafe` because they generally can't violate memory
182182
safety *on their own*. For instance, converting an integer to a raw pointer can
@@ -212,7 +212,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
212212
-->
213213
<ul>
214214
<li><code>*T as *U</code> 但し <code>T, U: Sized</code></li>
215-
<li><code>*T as *U</code> TODO: アンサイズの場合について説明する</li>
215+
<li><code>*T as *U</code> TODO: サイズが不定の場合について説明する</li>
216216
<li><code>*T as integer</code></li>
217217
<li><code>integer as *T</code></li>
218218
<li><code>number as number</code></li>

docs/print.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3420,7 +3420,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
34203420
明示的に引き起こすことが出来ます。しかし、いくつかの変換はキャストを必要とします。
34213421
型強制は普及していて、大体の場合、害はないのですが、これらの &quot;真のキャスト&quot; は稀で、
34223422
潜在的に危険です。ですから、キャストは <code>as</code> キーワードを用いて、明示的に
3423-
呼び起こさなければなりません: <code>expr as Type</code></p>
3423+
実行しなければなりません: <code>expr as Type</code></p>
34243424
<!--
34253425
True casts generally revolve around raw pointers and the primitive numeric
34263426
types. Even though they're dangerous, these casts are infallible at runtime.
@@ -3434,7 +3434,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
34343434
もしキャストが何か微妙なコーナーケースを引き起こしたとしても、
34353435
何の指摘もされないでしょう。キャストは単に成功します。そうは言ったものの、
34363436
キャストは型レベルで正しくなければなりません。でなければそのキャストは静的に
3437-
防がれます。例えば、 <code>7u8 as bool</code> はコンパイルされません</p>
3437+
防がれます。例えば、 <code>7u8 as bool</code> はコンパイルできません</p>
34383438
<!--
34393439
That said, casts aren't `unsafe` because they generally can't violate memory
34403440
safety *on their own*. For instance, converting an integer to a raw pointer can
@@ -3470,7 +3470,7 @@ <h1><a class="header" href="#キャスト" id="キャスト">キャスト</a></h
34703470
-->
34713471
<ul>
34723472
<li><code>*T as *U</code> 但し <code>T, U: Sized</code></li>
3473-
<li><code>*T as *U</code> TODO: アンサイズの場合について説明する</li>
3473+
<li><code>*T as *U</code> TODO: サイズが不定の場合について説明する</li>
34743474
<li><code>*T as integer</code></li>
34753475
<li><code>integer as *T</code></li>
34763476
<li><code>number as number</code></li>

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)