Skip to content

Commit 1223db0

Browse files
committed
Merge pull request #20 from dalance/typos
fix typos
2 parents dc07680 + ecfc9bd commit 1223db0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

1.6/ja/book/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<!-- Even then, Rust still allows precise control like a low-level language would. -->
1515

1616
ようこそ!この本は[プログラミング言語Rust][rust]の教材です。Rustは安全性、速度、並行性の3つのゴールにフォーカスしたシステムプログラミング言語です。
17-
ガーベジコレクタなしにこれらのゴールを実現していて、 他の言語への埋め込み、要求された空間や時間内での動作、
18-
デバイスドライバやオペレーティングシステムな低レベルなコードなど他の言語が苦手とする多数のユースケースを得意とします
17+
ガーベジコレクタなしにこれらのゴールを実現していて、他の言語への埋め込み、要求された空間や時間内での動作、
18+
デバイスドライバやオペレーティングシステムのような低レベルなコードなど他の言語が苦手とする多数のユースケースを得意とします
1919
全てのデータ競合を排除しつつも実行時オーバーヘッドのないコンパイル時の安全性検査を多数持ち、これらの領域をターゲットに置く既存の言語を改善します。
2020
Rustは高級言語のような抽象化も含めた「ゼロコスト抽象化」も目標としています。
2121
そうでありつつもなお低級言語のような精密な制御も許します。

1.6/ja/book/getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Rustのサポートレベルは3階級に分かれていて、それぞれ違う
7676
<!-- are not run so it's not guaranteed to produce a working build, but platforms -->
7777
<!-- often work to quite a good degree and patches are always welcome! Specifically, -->
7878
<!-- these platforms are required to have each of the following: -->
79-
段階2のプラットフォームは「ビルドを保証する」ものと思えます。
79+
2級のプラットフォームは「ビルドを保証する」ものと思えます。
8080
自動テストは走っておらず、ビルド出来たとしてもちゃんと動く保証はありませんが大抵ほぼ動きますしパッチはいつでも歓迎しています!
8181
特に、以下が要請されています。
8282

@@ -243,7 +243,7 @@ $ rustc --version
243243
<!-- the local hard drive. -->
244244
Windowsを使っていて、表示されないなら%PATH%システム変数にRustが入っているか確認して下さい。
245245
入っていなければもう一度インストーラを実行し、「Change,
246-
repair, or remove installation」ページのの「Change」を選択し、「Add to PATH」がローカルのハードドライブにインストールされていることを確認して下さい。
246+
repair, or remove installation」ページの「Change」を選択し、「Add to PATH」がローカルのハードドライブにインストールされていることを確認して下さい。
247247

248248
<!-- If not, there are a number of places where we can get help. The easiest is -->
249249
<!-- [the #rust IRC channel on irc.mozilla.org][irc], which we can access through -->
@@ -397,9 +397,9 @@ fn main() {
397397
<!-- requires these around all function bodies. It's considered good style to put -->
398398
<!-- the opening curly brace on the same line as the function declaration, with one -->
399399
<!-- space in between. -->
400-
さらに、関数の本体部がくるくる括弧(`{``}`)で括られていることに留意して下さい。
401-
Rustは全ての関数の本体部にくるくる括弧を要請します
402-
関数宣言と同じ行に1スペース空けて開きくるくる括弧を置くのが良いスタイルとされます
400+
さらに、関数の本体部が波括弧(`{``}`)で括られていることに留意して下さい。
401+
Rustは全ての関数の本体部に波括弧を要請します
402+
関数宣言と同じ行に1スペース空けて開き波括弧を置くのが良いスタイルとされます
403403

404404
<!-- Inside the `main()` function: -->
405405
`main()`関数の中では
@@ -545,7 +545,7 @@ Cargoは3つのものを管理します、則ち、コードのビルド、コ
545545
<!-- you’re using it for the rest of the book. Cargo comes installed with Rust -->
546546
<!-- itself, if you used the official installers. If you installed Rust through some -->
547547
<!-- other means, you can check if you have Cargo installed by typing: -->
548-
ほとんどもほとんどのRustのプロジェクトがCargoを使うのでこれ以後はCargoを使うものと仮定します
548+
ほとんどのRustのプロジェクトがCargoを使うのでこれ以後はCargoを使うものと仮定します
549549
公式のインストーラを使ったならCargoはRustに同梱されています。
550550
他の手段でRustをインストールしたなら、以下のコマンドでCargoがインストールされているか確認出来ます。
551551

@@ -560,7 +560,7 @@ $ cargo --version
560560
Rustをインストールしたシステムのドキュメントを見て、Cargoが別になっているか判断しましょう。
561561

562562
<!-- ## Converting to Cargo -->
563-
## Corgoへ変換する
563+
## Cargoへ変換する
564564

565565
<!-- Let’s convert the Hello World program to Cargo. To Cargo-fy a project, you need -->
566566
<!-- to do three things: -->

0 commit comments

Comments
 (0)