Skip to content

Commit bcf0f70

Browse files
committed
ci: generate pages at 0c16b4b [ci skip]
1 parent 0c16b4b commit bcf0f70

File tree

5 files changed

+20
-24
lines changed

5 files changed

+20
-24
lines changed

docs/ch01-03-hello-cargo.html

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ <h3 id="cargoでプロジェクトを作成する"><a class="header" href="#carg
269269
<pre><code class="language-toml">[package]
270270
name = &quot;hello_cargo&quot;
271271
version = &quot;0.1.0&quot;
272-
authors = [&quot;Your Name &lt;you@example.com&gt;&quot;]
272+
edition = &quot;2018&quot;
273273

274274
[dependencies]
275275
</code></pre>
@@ -293,13 +293,11 @@ <h3 id="cargoでプロジェクトを作成する"><a class="header" href="#carg
293293
別のセクションも追加するでしょう。</p>
294294
<!--
295295
The next three lines set the configuration information Cargo needs to compile
296-
your program: the name, the version, and who wrote it. Cargo gets your name and
297-
email information from your environment, so if that information is not correct,
298-
fix the information now and then save the file.
299-
-->
300-
<p>その後の3行が、Cargoがプログラムをコンパイルするのに必要な設定情報をセットします: 名前、バージョン、誰が書いたかです。
301-
Cargoは名前とEメールの情報を環境から取得するので、その情報が正しくなければ、
302-
今修正してそれから保存してください。</p>
296+
your program: the name, the version, and the edition of Rust to use. We’ll talk
297+
about the `edition` key in [Appendix E][appendix-e]<!-- ignore -->.
298+
<p>--&gt;</p>
299+
<p>その後の3行が、Cargoがプログラムをコンパイルするのに必要な設定情報をセットします: 名前、バージョン、使用するRustのエディションです。
300+
<code>edition</code>キーについては、[Appendix E][appendix-e]<!-- ignore -->で話題にします。</p>
303301
<!--
304302
The last line, `[dependencies]`, is the start of a section for you to list any
305303
of your project’s dependencies. In Rust, packages of code are referred to as

docs/ch12-04-testing-the-librarys-functionality.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ <h3 id="失敗するテストを記述する"><a class="header" href="#失敗す
280280
-->
281281
<p><span class="caption">リスト12-15: こうだったらいいなという<code>search</code>関数の失敗するテストを作成する</span></p>
282282
<!--
283-
This test searches for the string `“duct.”` The text we’re searching is three
284-
lines, only one of which contains `“duct.”` We assert that the value returned
283+
This test searches for the string `“duct”`. The text we’re searching is three
284+
lines, only one of which contains `“duct”`. We assert that the value returned
285285
from the `search` function contains only the line we expect.
286286
-->
287-
<p>このテストは、<code>&quot;duct.&quot;</code>という文字列を検索します。検索対象の文字列は3行で、うち1行だけが<code>&quot;duct.&quot;</code>を含みます。
287+
<p>このテストは、<code>&quot;duct&quot;</code>という文字列を検索します。検索対象の文字列は3行で、うち1行だけが<code>&quot;duct&quot;</code>を含みます。
288288
<code>search</code>関数から返る値が想定している行だけを含むことをアサーションします。</p>
289289
<!--
290290
We aren’t able to run this test and watch it fail because the test doesn’t even

docs/print.html

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,7 @@ <h3 id="cargoでプロジェクトを作成する"><a class="header" href="#carg
12661266
<pre><code class="language-toml">[package]
12671267
name = &quot;hello_cargo&quot;
12681268
version = &quot;0.1.0&quot;
1269-
authors = [&quot;Your Name &lt;you@example.com&gt;&quot;]
1269+
edition = &quot;2018&quot;
12701270

12711271
[dependencies]
12721272
</code></pre>
@@ -1290,13 +1290,11 @@ <h3 id="cargoでプロジェクトを作成する"><a class="header" href="#carg
12901290
別のセクションも追加するでしょう。</p>
12911291
<!--
12921292
The next three lines set the configuration information Cargo needs to compile
1293-
your program: the name, the version, and who wrote it. Cargo gets your name and
1294-
email information from your environment, so if that information is not correct,
1295-
fix the information now and then save the file.
1296-
-->
1297-
<p>その後の3行が、Cargoがプログラムをコンパイルするのに必要な設定情報をセットします: 名前、バージョン、誰が書いたかです。
1298-
Cargoは名前とEメールの情報を環境から取得するので、その情報が正しくなければ、
1299-
今修正してそれから保存してください。</p>
1293+
your program: the name, the version, and the edition of Rust to use. We’ll talk
1294+
about the `edition` key in [Appendix E][appendix-e]<!-- ignore -->.
1295+
<p>--&gt;</p>
1296+
<p>その後の3行が、Cargoがプログラムをコンパイルするのに必要な設定情報をセットします: 名前、バージョン、使用するRustのエディションです。
1297+
<code>edition</code>キーについては、[Appendix E][appendix-e]<!-- ignore -->で話題にします。</p>
13001298
<!--
13011299
The last line, `[dependencies]`, is the start of a section for you to list any
13021300
of your project’s dependencies. In Rust, packages of code are referred to as
@@ -21671,11 +21669,11 @@ <h3 id="失敗するテストを記述する"><a class="header" href="#失敗す
2167121669
-->
2167221670
<p><span class="caption">リスト12-15: こうだったらいいなという<code>search</code>関数の失敗するテストを作成する</span></p>
2167321671
<!--
21674-
This test searches for the string `“duct.”` The text we’re searching is three
21675-
lines, only one of which contains `“duct.”` We assert that the value returned
21672+
This test searches for the string `“duct”`. The text we’re searching is three
21673+
lines, only one of which contains `“duct”`. We assert that the value returned
2167621674
from the `search` function contains only the line we expect.
2167721675
-->
21678-
<p>このテストは、<code>&quot;duct.&quot;</code>という文字列を検索します。検索対象の文字列は3行で、うち1行だけが<code>&quot;duct.&quot;</code>を含みます。
21676+
<p>このテストは、<code>&quot;duct&quot;</code>という文字列を検索します。検索対象の文字列は3行で、うち1行だけが<code>&quot;duct&quot;</code>を含みます。
2167921677
<code>search</code>関数から返る値が想定している行だけを含むことをアサーションします。</p>
2168021678
<!--
2168121679
We aren’t able to run this test and watch it fail because the test doesn’t even

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)