Skip to content

Commit 5c6165d

Browse files
committed
ci: generate pages at 0e84eff [ci skip]
1 parent 0e84eff commit 5c6165d

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

docs/print.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6668,7 +6668,7 @@ <h1><a class="header" href="#所有権とムーブ" id="所有権とムーブ">
66686668
// Since the heap memory has been freed at this point, this action would
66696669
// result in dereferencing freed memory, but it's forbidden by the compiler
66706670
// Error! Same reason as the previous Error
6671-
// この時点でヒープメモリ上の資源は開放されているので、次の操作は解放
6671+
// この時点でヒープメモリ上の資源は開放されているので、次の操作は
66726672
// 解放済みメモリをデリファレンスすることになる。しかしそれはコンパイラが許さない。
66736673
// エラー! 上述の理由より
66746674
//println!(&quot;b contains: {}&quot;, b);
@@ -6755,7 +6755,7 @@ <h1><a class="header" href="#借用" id="借用">借用</a></h1>
67556755
// Error!
67566756
// Can't destroy `boxed_i32` while the inner value is borrowed later in scope.
67576757
// エラー!
6758-
// ボックス内の要素が借用されているため、`boxed_int`を破棄する
6758+
// ボックス内の要素が借用されているため、`boxed_i32`を破棄する
67596759
// ことはできない。
67606760
eat_box_i32(boxed_i32);
67616761
// FIXME ^ Comment out this line
@@ -6977,7 +6977,7 @@ <h1><a class="header" href="#refパターン" id="refパターン">refパター
69776977

69786978
{
69796979
// Destructure `mutable_tuple` to change the value of `last`.
6980-
// `mutable_ tuple`をデストラクトして、`last`の値を変更
6980+
// `mutable_tuple`をデストラクトして、`last`の値を変更
69816981
let (_, ref mut last) = mutable_tuple;
69826982
*last = 2u32;
69836983
}
@@ -7198,7 +7198,7 @@ <h1><a class="header" href="#関数-2" id="関数-2">関数</a></h1>
71987198
// reference. Then the data is dropped upon exiting the scope, leaving
71997199
// a reference to invalid data to be returned.
72007200
// `'a`は関数より長くなくてはならないため上の関数は正しくない。
7201-
// ここでは、`&amp;7`は`i32`のデータとそれへの参照を作り出す。
7201+
// ここでは、`&amp;String::from(&quot;foo&quot;)`は`String`のデータとそれへの参照を作り出す。
72027202
// その後データはスコープを抜けるとともに破棄される。そのため、
72037203
// 不適切なデータに対する参照を返すことになってしまう。
72047204

@@ -7368,7 +7368,7 @@ <h1><a class="header" href="#ライフタイム境界" id="ライフタイム境
73687368
// *references* in `T` must outlive `'a`. Additionally, the lifetime
73697369
// of `Ref` may not exceed `'a`.
73707370
// `Ref`は`'a`というライフタイムを持つジェネリック型`T`に対する参照を持ち、
7371-
// `T`の値 *に対する参照* は必ず`'a`よりも長生きでなくてはならない。
7371+
// `T`の値に対する *参照* は必ず`'a`よりも長生きでなくてはならない。
73727372
// さらに、`Ref`のライフタイムは`'a`を超えてはならない。
73737373

73747374
// A generic function which prints using the `Debug` trait.

docs/scope/borrow.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ <h1><a class="header" href="#借用" id="借用">借用</a></h1>
218218
// Error!
219219
// Can't destroy `boxed_i32` while the inner value is borrowed later in scope.
220220
// エラー!
221-
// ボックス内の要素が借用されているため、`boxed_int`を破棄する
221+
// ボックス内の要素が借用されているため、`boxed_i32`を破棄する
222222
// ことはできない。
223223
eat_box_i32(boxed_i32);
224224
// FIXME ^ Comment out this line

docs/scope/borrow/ref.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ <h1><a class="header" href="#refパターン" id="refパターン">refパター
230230

231231
{
232232
// Destructure `mutable_tuple` to change the value of `last`.
233-
// `mutable_ tuple`をデストラクトして、`last`の値を変更
233+
// `mutable_tuple`をデストラクトして、`last`の値を変更
234234
let (_, ref mut last) = mutable_tuple;
235235
*last = 2u32;
236236
}

docs/scope/lifetime/fn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ <h1><a class="header" href="#関数" id="関数">関数</a></h1>
228228
// reference. Then the data is dropped upon exiting the scope, leaving
229229
// a reference to invalid data to be returned.
230230
// `'a`は関数より長くなくてはならないため上の関数は正しくない。
231-
// ここでは、`&amp;7`は`i32`のデータとそれへの参照を作り出す。
231+
// ここでは、`&amp;String::from(&quot;foo&quot;)`は`String`のデータとそれへの参照を作り出す。
232232
// その後データはスコープを抜けるとともに破棄される。そのため、
233233
// 不適切なデータに対する参照を返すことになってしまう。
234234

docs/scope/lifetime/lifetime_bounds.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h1><a class="header" href="#ライフタイム境界" id="ライフタイム境
202202
// *references* in `T` must outlive `'a`. Additionally, the lifetime
203203
// of `Ref` may not exceed `'a`.
204204
// `Ref`は`'a`というライフタイムを持つジェネリック型`T`に対する参照を持ち、
205-
// `T`の値 *に対する参照* は必ず`'a`よりも長生きでなくてはならない。
205+
// `T`の値に対する *参照* は必ず`'a`よりも長生きでなくてはならない。
206206
// さらに、`Ref`のライフタイムは`'a`を超えてはならない。
207207

208208
// A generic function which prints using the `Debug` trait.

docs/scope/move.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ <h1><a class="header" href="#所有権とムーブ" id="所有権とムーブ">
242242
// Since the heap memory has been freed at this point, this action would
243243
// result in dereferencing freed memory, but it's forbidden by the compiler
244244
// Error! Same reason as the previous Error
245-
// この時点でヒープメモリ上の資源は開放されているので、次の操作は解放
245+
// この時点でヒープメモリ上の資源は開放されているので、次の操作は
246246
// 解放済みメモリをデリファレンスすることになる。しかしそれはコンパイラが許さない。
247247
// エラー! 上述の理由より
248248
//println!(&quot;b contains: {}&quot;, b);

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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy