File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12781,7 +12781,7 @@ <h1 id="他言語関数インターフェイス"><a class="header" href="#他言
12781
12781
12782
12782
// Since calling foreign functions is considered unsafe,
12783
12783
// it's common to write safe wrappers around them.
12784
- // 型安全ににするためのラッパ
12784
+ // 型安全にするためのラッパ
12785
12785
fn cos(z: Complex) -> Complex {
12786
12786
unsafe { ccosf(z) }
12787
12787
}
@@ -13082,7 +13082,7 @@ <h2 id="テストを除外する"><a class="header" href="#テストを除外す
13082
13082
Tests can be marked with the `#[ignore]` attribute to exclude some tests. Or to run
13083
13083
them with command `cargo test -- --ignored`
13084
13084
-->
13085
- <p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。<code>cargo test -- --ignored</code>で、除外したものを含めてテストを実行できます 。</p>
13085
+ <p>テストを実行から除外するには、<code>#[ignore]</code>アトリビュートを使います。また、 <code>cargo test -- --ignored</code>で、除外したテストのみを実行できます 。</p>
13086
13086
<pre><pre class="playground"><code class="language-rust edition2021"><span class="boring">#![allow(unused)]
13087
13087
</span><span class="boring">fn main() {
13088
13088
</span>pub fn add(a: i32, b: i32) -> i32 {
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ <h1 id="他言語関数インターフェイス"><a class="header" href="#他言
172
172
173
173
// Since calling foreign functions is considered unsafe,
174
174
// it's common to write safe wrappers around them.
175
- // 型安全ににするためのラッパ
175
+ // 型安全にするためのラッパ
176
176
fn cos(z: Complex) -> Complex {
177
177
unsafe { ccosf(z) }
178
178
}
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ <h2 id="テストを除外する"><a class="header" href="#テストを除外す
368
368
Tests can be marked with the `#[ignore]` attribute to exclude some tests. Or to run
369
369
them with command `cargo test -- --ignored`
370
370
-->
371
- < p > テストを実行から除外するには、< code > #[ignore]</ code > アトリビュートを使います。< code > cargo test -- --ignored</ code > で、除外したものを含めてテストを実行できます 。</ p >
371
+ < p > テストを実行から除外するには、< code > #[ignore]</ code > アトリビュートを使います。また、 < code > cargo test -- --ignored</ code > で、除外したテストのみを実行できます 。</ p >
372
372
< pre > < pre class ="playground "> < code class ="language-rust edition2021 "> < span class ="boring "> #![allow(unused)]
373
373
</ span > < span class ="boring "> fn main() {
374
374
</ span > pub fn add(a: i32, b: i32) -> i32 {
You can’t perform that action at this time.
0 commit comments