Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

片仮名語のタイポ修正 #133

Merged
merged 4 commits into from
Nov 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/appendix-07-nightly-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bring you new features, fewer bugs, and faster compile times.
-->

この問題に対する我々の解決策は「停滞なしの安定性」と呼ばれるもので、ガイドの原則は以下の通りです:
安定版Rustの新しいバージョンにアップグレードするのを恐れる必要は何もないはずです。各アップグレートは痛みのないもののはずですが
安定版Rustの新しいバージョンにアップグレードするのを恐れる必要は何もないはずです。各アップグレードは痛みのないもののはずですが
新しい機能、より少ないバグ、高速なコンパイル時間も齎すべきです。

<!--
Expand Down
2 changes: 1 addition & 1 deletion src/ch02-00-guessing-game-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ because you just want to crash this program when a problem occurs, you can use
-->

警告を抑制する正しい手段は、実際にエラー対処コードを書くことですが、今は、
問題が起きた時にプロラグムをクラッシュさせたいので、`expect`を使用できるわけです。
問題が起きた時にプログラムをクラッシュさせたいので、`expect`を使用できるわけです。
エラーから復旧する方法については、第9章で学ぶでしょう。

<!--
Expand Down
2 changes: 1 addition & 1 deletion src/ch12-02-reading-a-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,5 +192,5 @@ much easier to refactor smaller amounts of code. We’ll do that next.
`main`関数が複数の責任を受け持っています: 一般に、各関数がただ一つの責任だけを持つようになれば、
関数は明確かつ、管理しやすくなります。もう一つの問題点は、できうる限りのエラー処理を怠っていることです。
まだプログラムが小規模なので、これらの欠陥は大きな問題にはなりませんが、プログラムが大規模になるにつれ、
それを綺麗に解消するのは困難になっていきます。プログラムを開発する際に早い段階でリファクタングを行うのは
それを綺麗に解消するのは困難になっていきます。プログラムを開発する際に早い段階でリファクタリングを行うのは
良い戦術です。リファクタリングするコードの量が少なければ、はるかに簡単になりますからね。次は、それを行いましょう。
2 changes: 1 addition & 1 deletion src/ch12-03-improving-error-handling-and-modularity.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ process has the following steps:
-->

`main`関数に複数の仕事の責任を割り当てるという構造上の問題は、多くのバイナリプロジェクトでありふれています。
結果として、`main`が肥大化し始めた際にバイナリプログラムの個別の責任を分割するためにガイドラインとして活用できる工程をRustコミニュティは
結果として、`main`が肥大化し始めた際にバイナリプログラムの個別の責任を分割するためにガイドラインとして活用できる工程をRustコミュニティは
開発しました。この工程は、以下のような手順になっています:

<!--
Expand Down