Skip to content

Commit 9f01f7f

Browse files
committed
ci: generate pages at dada509 [ci skip]
1 parent dada509 commit 9f01f7f

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

docs/flow_control/match/destructuring/destructure_structures.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ <h1 id="構造体"><a class="header" href="#構造体">構造体</a></h1>
160160
}
161161

162162
// Try changing the values in the struct to see what happens
163+
// 構造体の中の値を変えて、何が起きるか見てみよう。
163164
let foo = Foo { x: (1, 2), y: 3 };
164165

165166
match foo {

docs/flow_control/match/destructuring/destructure_tuple.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ <h1 id="タプル"><a class="header" href="#タプル">タプル</a></h1>
169169
(.., 2) =&gt; println!(&quot;last is `2` and the rest doesn't matter&quot;),
170170
(3, .., 4) =&gt; println!(&quot;First is `3`, last is `4`, and the rest doesn't matter&quot;),
171171
// `..` can be used to ignore the rest of the tuple
172+
// `..`を使うと、タプルの残りの部分を無視できます。
172173
_ =&gt; println!(&quot;It doesn't matter what they are&quot;),
173174
// `_` means don't bind the value to a variable
174175
// ここでは`_`は、値を変数に束縛しないことを意味します。

docs/print.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3175,6 +3175,7 @@ <h1 id="タプル-1"><a class="header" href="#タプル-1">タプル</a></h1>
31753175
(.., 2) =&gt; println!(&quot;last is `2` and the rest doesn't matter&quot;),
31763176
(3, .., 4) =&gt; println!(&quot;First is `3`, last is `4`, and the rest doesn't matter&quot;),
31773177
// `..` can be used to ignore the rest of the tuple
3178+
// `..`を使うと、タプルの残りの部分を無視できます。
31783179
_ =&gt; println!(&quot;It doesn't matter what they are&quot;),
31793180
// `_` means don't bind the value to a variable
31803181
// ここでは`_`は、値を変数に束縛しないことを意味します。
@@ -3394,6 +3395,7 @@ <h1 id="構造体-1"><a class="header" href="#構造体-1">構造体</a></h1>
33943395
}
33953396

33963397
// Try changing the values in the struct to see what happens
3398+
// 構造体の中の値を変えて、何が起きるか見てみよう。
33973399
let foo = Foo { x: (1, 2), y: 3 };
33983400

33993401
match foo {

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)