Skip to content

Commit 2d58df7

Browse files
committed
ci: generate pages at 5c68946 [ci skip]
1 parent 5c68946 commit 2d58df7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/print.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12781,7 +12781,7 @@ <h1 id="他言語関数インターフェイス"><a class="header" href="#他言
1278112781

1278212782
// Since calling foreign functions is considered unsafe,
1278312783
// it's common to write safe wrappers around them.
12784-
// 型安全ににするためのラッパ
12784+
// 型安全にするためのラッパ
1278512785
fn cos(z: Complex) -&gt; Complex {
1278612786
unsafe { ccosf(z) }
1278712787
}
@@ -13082,7 +13082,7 @@ <h2 id="テストを除外する"><a class="header" href="#テストを除外す
1308213082
Tests can be marked with the `#[ignore]` attribute to exclude some tests. Or to run
1308313083
them with command `cargo test -- --ignored`
1308413084
-->
13085-
<p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。<code>cargo test -- --ignored</code>で、除外したものを含めてテストを実行できます。</p>
13085+
<p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。また、<code>cargo test -- --ignored</code>で、除外したテストのみを実行できます。</p>
1308613086
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
1308713087
</span><span class="boring">fn main() {
1308813088
</span>pub fn add(a: i32, b: i32) -&gt; i32 {

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.

docs/std_misc/ffi.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ <h1 id="他言語関数インターフェイス"><a class="header" href="#他言
172172

173173
// Since calling foreign functions is considered unsafe,
174174
// it's common to write safe wrappers around them.
175-
// 型安全ににするためのラッパ
175+
// 型安全にするためのラッパ
176176
fn cos(z: Complex) -&gt; Complex {
177177
unsafe { ccosf(z) }
178178
}

docs/testing/unit_testing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ <h2 id="テストを除外する"><a class="header" href="#テストを除外す
368368
Tests can be marked with the `#[ignore]` attribute to exclude some tests. Or to run
369369
them with command `cargo test -- --ignored`
370370
-->
371-
<p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。<code>cargo test -- --ignored</code>で、除外したものを含めてテストを実行できます</p>
371+
<p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。また、<code>cargo test -- --ignored</code>で、除外したテストのみを実行できます</p>
372372
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
373373
</span><span class="boring">fn main() {
374374
</span>pub fn add(a: i32, b: i32) -&gt; i32 {

0 commit comments

Comments
 (0)