Skip to content

Commit 08f7e4a

Browse files
committed
ci: generate pages at cfa89af [ci skip]
1 parent cfa89af commit 08f7e4a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

public/1.6/book/deref-coercions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ <h1 class="title">`Deref` による型強制</h1>
192192

193193
<!-- used to overload `*`, the dereference operator: -->
194194

195-
<p>標準ライブラリは特別なトレイト <a href="../std/ops/trait.Deref.html"><code>Dref</code></a> を提供します。
195+
<p>標準ライブラリは特別なトレイト <a href="../std/ops/trait.Deref.html"><code>Deref</code></a> を提供します。
196196
<code>Deref</code> は通常、参照外し演算子 <code>*</code> をオーバーロードするために利用されます。</p>
197197

198198
<span class='rusttest'>use std::ops::Deref;

public/1.6/book/trait-objects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ <h3 id='何故ポインタなのか' class='section-header'><a href='#何故ポ
450450
way to guarantee that this last point can work if the values are stored without
451451
a pointer, because those other types can be arbitrarily large. -->
452452

453-
<p><code>Foo</code> のためには、 <code>String</code> (24 bytes)か <code>u8</code> (1 byte)もしくは <code>Foo</code> (とにかくどんなサイズでも)を実装する依存クレイト内の型のうちから少なくとも1つの値を格納する必要があります。ポインタ無しで値を保存した場合、その直後の動作が正しいかどうかを保証する方法がありません。型によって値のサイズが異なるからです。</p>
453+
<p><code>Foo</code> のためには、 <code>String</code> (24 bytes)か <code>u8</code> (1 byte)もしくは <code>Foo</code> (とにかくどんなサイズでも)を実装する依存クレート内の型のうちから少なくとも1つの値を格納する必要があります。ポインタ無しで値を保存した場合、その直後の動作が正しいかどうかを保証する方法がありません。型によって値のサイズが異なるからです。</p>
454454

455455
<!-- Putting the value behind a pointer means the size of the value is not relevant
456456
when we are tossing a trait object around, only the size of the pointer itself. -->

public/1.9/book/deref-coercions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ <h1 class="title">`Deref` による型強制</h1>
184184

185185
<!-- used to overload `*`, the dereference operator: -->
186186

187-
<p>標準ライブラリは特別なトレイト <a href="../std/ops/trait.Deref.html"><code>Dref</code></a> を提供します。
187+
<p>標準ライブラリは特別なトレイト <a href="../std/ops/trait.Deref.html"><code>Deref</code></a> を提供します。
188188
<code>Deref</code> は通常、参照外し演算子 <code>*</code> をオーバーロードするために利用されます。</p>
189189

190190
<span class='rusttest'>use std::ops::Deref;

public/1.9/book/trait-objects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ <h3 id='何故ポインタなのか' class='section-header'><a href='#何故ポ
442442
way to guarantee that this last point can work if the values are stored without
443443
a pointer, because those other types can be arbitrarily large. -->
444444

445-
<p><code>Foo</code> のためには、 <code>String</code> (24 bytes)か <code>u8</code> (1 byte)もしくは <code>Foo</code> (とにかくどんなサイズでも)を実装する依存クレイト内の型のうちから少なくとも1つの値を格納する必要があります。ポインタ無しで値を保存した場合、その直後の動作が正しいかどうかを保証する方法がありません。型によって値のサイズが異なるからです。</p>
445+
<p><code>Foo</code> のためには、 <code>String</code> (24 bytes)か <code>u8</code> (1 byte)もしくは <code>Foo</code> (とにかくどんなサイズでも)を実装する依存クレート内の型のうちから少なくとも1つの値を格納する必要があります。ポインタ無しで値を保存した場合、その直後の動作が正しいかどうかを保証する方法がありません。型によって値のサイズが異なるからです。</p>
446446

447447
<!-- Putting the value behind a pointer means the size of the value is not relevant
448448
when we are tossing a trait object around, only the size of the pointer itself. -->

0 commit comments

Comments
 (0)