Skip to content

Commit 3165cc7

Browse files
committed
ci: generate pages at 41ffb25 [ci skip]
1 parent 41ffb25 commit 3165cc7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/editions/creating-a-new-project.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,23 +179,23 @@ <h1><a class="header" href="#新しいプロジェクトを作成する" id="新
179179
<p>Cargoは新たなプロジェクトを作成する際に自動で最新のエディションをコンフィギュレーションに追加します。</p>
180180
<pre><code class="language-console">&gt; cargo +nightly new foo
181181
Created binary (application) `foo` project
182-
&gt; cat .\foo\Cargo.toml
182+
&gt; cat foo/Cargo.toml
183183
[package]
184184
name = &quot;foo&quot;
185185
version = &quot;0.1.0&quot;
186186
authors = [&quot;your name &lt;you@example.com&gt;&quot;]
187-
edition = &quot;2018&quot;
187+
edition = &quot;2021&quot;
188188

189189
[dependencies]
190190
</code></pre>
191191
<!--
192-
That `edition = "2018"` setting will configure your package to use Rust 2018.
192+
That `edition = "2021"` setting will configure your package to use Rust 2021.
193193
No more configuration needed!
194194
195195
If you'd prefer to use an older edition, you can change the value in that
196196
key, for example:
197197
-->
198-
<p>この <code>edition = &quot;2018&quot;</code> によってあなたのパッケージが Rust 2018 を利用するように設定されます。
198+
<p>この <code>edition = &quot;2021&quot;</code> によってあなたのパッケージが Rust 2021 を利用するように設定されます。
199199
これ以外は必要ありません。</p>
200200
<p>もし、他の古いエディションを使いたい場合は、その設定の値を変更できます。例えば、</p>
201201
<pre><code class="language-toml">[package]

docs/print.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,23 +291,23 @@ <h1><a class="header" href="#新しいプロジェクトを作成する" id="新
291291
<p>Cargoは新たなプロジェクトを作成する際に自動で最新のエディションをコンフィギュレーションに追加します。</p>
292292
<pre><code class="language-console">&gt; cargo +nightly new foo
293293
Created binary (application) `foo` project
294-
&gt; cat .\foo\Cargo.toml
294+
&gt; cat foo/Cargo.toml
295295
[package]
296296
name = &quot;foo&quot;
297297
version = &quot;0.1.0&quot;
298298
authors = [&quot;your name &lt;you@example.com&gt;&quot;]
299-
edition = &quot;2018&quot;
299+
edition = &quot;2021&quot;
300300

301301
[dependencies]
302302
</code></pre>
303303
<!--
304-
That `edition = "2018"` setting will configure your package to use Rust 2018.
304+
That `edition = "2021"` setting will configure your package to use Rust 2021.
305305
No more configuration needed!
306306
307307
If you'd prefer to use an older edition, you can change the value in that
308308
key, for example:
309309
-->
310-
<p>この <code>edition = &quot;2018&quot;</code> によってあなたのパッケージが Rust 2018 を利用するように設定されます。
310+
<p>この <code>edition = &quot;2021&quot;</code> によってあなたのパッケージが Rust 2021 を利用するように設定されます。
311311
これ以外は必要ありません。</p>
312312
<p>もし、他の古いエディションを使いたい場合は、その設定の値を変更できます。例えば、</p>
313313
<pre><code class="language-toml">[package]

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)