Skip to content

Commit 105dd4d

Browse files
committed
Little Fix translation.
1 parent 69f6824 commit 105dd4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1.6/ja/book/using-rust-without-the-standard-library.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
Rustの標準ライブラリは多くの便利な機能を提供している一方で、
1010
スレッド、ネットワーク、ヒープアロケーション、その他の多くの機能をホストシステムが提供していることを前提としています。
1111
一方で、それらの機能を提供していないシステムも存在します。しかし、Rustはそれらの上でも利用することができます!
12-
利用するには、Rustに標準ライブラリを利用しないということを `#![no_std]` アトリビュートを利用して伝えることで可能となります。
12+
それは、Rustに標準ライブラリを利用しないということを `#![no_std]` アトリビュートを利用して伝えることで可能となります。
1313

1414

1515
<!-- > Note: This feature is technically stable, but there are some caveats. For -->
1616
<!-- > one, you can build a `#![no_std]` _library_ on stable, but not a _binary_. -->
1717
<!-- > For details on binaries without the standard library, see [the nightly -->
1818
<!-- > chapter on `#![no_std]`](no-stdlib.html) -->
1919
> メモ: このフィーチャーは技術的には安定していますが、いくつか注意点が有ります。
20-
> 例えば、 `#![no_std]` を含んだ _library_ は 安定版でビルド可能ですが、 _binary_ はビルド不可能です。
20+
> 例えば、 `#![no_std]` を含んだ _ライブラリ_ は 安定版でビルド可能ですが、 _バイナリ_ はビルド不可能です。
2121
> 標準ライブラリを利用しないバイナリについては [`#![no_std]` についての不安定版のドキュメント](no-stdlib.html) を確認してください。
2222
2323
<!-- To use `#![no_std]`, add a it to your crate root: -->

0 commit comments

Comments
 (0)