Skip to content

Commit e586015

Browse files
committed
ci: generate pages at 6b689e3 [ci skip]
1 parent 6b689e3 commit e586015

File tree

5 files changed

+10
-24
lines changed

5 files changed

+10
-24
lines changed

docs/print.html

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2101,7 +2101,7 @@ <h4><a class="header" href="#conflicting-trait-methods" id="conflicting-trait-me
21012101
<p>We can fix this by using fully qualified syntax:</p>
21022102
<pre><code class="language-rust ignore">fn main() {
21032103
// Now it is clear which trait method we're referring to
2104-
&lt;Vec&lt;i32&gt; as MyTrait&lt;()&gt;::from_iter(None);
2104+
&lt;Vec&lt;i32&gt; as MyTrait&lt;()&gt;&gt;::from_iter(None);
21052105
}
21062106
</code></pre>
21072107
<h4><a class="header" href="#inherent-methods-on-dyn-trait-objects" id="inherent-methods-on-dyn-trait-objects">Inherent methods on <code>dyn Trait</code> objects</a></h4>
@@ -2293,15 +2293,8 @@ <h3><a class="header" href="#ビルドの失敗" id="ビルドの失敗">ビル
22932293
And somewhere in our dependency tree, another package has this:
22942294
-->
22952295
<p>そして依存関係の中にはこんなパッケージもあるとしましょう:</p>
2296-
<!--
2297-
```toml
2298-
# Another package's Cargo.toml
2299-
2300-
[build-dependencies]
2301-
bstr = "0.2.16"
2302-
```
2303-
-->
2304-
<pre><code class="language-toml"># 別のパッケージの Cargo.toml
2296+
<pre><code class="language-toml"># Another package's Cargo.toml
2297+
# 別のパッケージの Cargo.toml
23052298

23062299
[build-dependencies]
23072300
bstr = &quot;0.2.16&quot;
@@ -2452,7 +2445,7 @@ <h3><a class="header" href="#フィーチャを探索する" id="フィーチャ
24522445
</code></pre>
24532446
<!--
24542447
This snippet of output shows that the project `foo` depends on `bar` with the "default" feature.
2455-
Then, `bar` depends on `bstr` as a build-dependency with the "default" feature
2448+
Then, `bar` depends on `bstr` as a build-dependency with the "default" feature.
24562449
We can further see that `bstr`'s "default" feature enables "unicode" (among other features).
24572450
-->
24582451
<p>この出力例からは、<code>foo</code><code>bar</code> に &quot;default&quot; フィーチャ付きで依存していることがわかり、

docs/rust-2021/default-cargo-resolver.html

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -280,15 +280,8 @@ <h3><a class="header" href="#ビルドの失敗" id="ビルドの失敗">ビル
280280
And somewhere in our dependency tree, another package has this:
281281
-->
282282
<p>そして依存関係の中にはこんなパッケージもあるとしましょう:</p>
283-
<!--
284-
```toml
285-
# Another package's Cargo.toml
286-
287-
[build-dependencies]
288-
bstr = "0.2.16"
289-
```
290-
-->
291-
<pre><code class="language-toml"># 別のパッケージの Cargo.toml
283+
<pre><code class="language-toml"># Another package's Cargo.toml
284+
# 別のパッケージの Cargo.toml
292285

293286
[build-dependencies]
294287
bstr = &quot;0.2.16&quot;
@@ -439,7 +432,7 @@ <h3><a class="header" href="#フィーチャを探索する" id="フィーチャ
439432
</code></pre>
440433
<!--
441434
This snippet of output shows that the project `foo` depends on `bar` with the "default" feature.
442-
Then, `bar` depends on `bstr` as a build-dependency with the "default" feature
435+
Then, `bar` depends on `bstr` as a build-dependency with the "default" feature.
443436
We can further see that `bstr`'s "default" feature enables "unicode" (among other features).
444437
-->
445438
<p>この出力例からは、<code>foo</code><code>bar</code> に &quot;default&quot; フィーチャ付きで依存していることがわかり、

docs/rust-2021/prelude.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ <h4><a class="header" href="#conflicting-trait-methods" id="conflicting-trait-me
226226
<p>We can fix this by using fully qualified syntax:</p>
227227
<pre><code class="language-rust ignore">fn main() {
228228
// Now it is clear which trait method we're referring to
229-
&lt;Vec&lt;i32&gt; as MyTrait&lt;()&gt;::from_iter(None);
229+
&lt;Vec&lt;i32&gt; as MyTrait&lt;()&gt;&gt;::from_iter(None);
230230
}
231231
</code></pre>
232232
<h4><a class="header" href="#inherent-methods-on-dyn-trait-objects" id="inherent-methods-on-dyn-trait-objects">Inherent methods on <code>dyn Trait</code> objects</a></h4>

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)