Skip to content

Commit d6d9e4e

Browse files
committed
Merge pull request #148 from tatsuya6502/book-readme-1.9
[1.9] bookのREADMEとSUMMARY
2 parents cbd6ba9 + 608dd0b commit d6d9e4e

File tree

10 files changed

+11
-2394
lines changed

10 files changed

+11
-2394
lines changed

1.9/ja/book/README.md

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22,47 +22,36 @@ Rustは高級言語のような抽象化も含めた「ゼロコスト抽象化
2222

2323
[rust]: https://www.rust-lang.org
2424

25-
<!-- “The Rust Programming Language” is split into eight sections. This introduction -->
25+
<!-- “The Rust Programming Language” is split into chapters. This introduction -->
2626
<!-- is the first. After this: -->
2727

28-
29-
「プログラミング言語Rust」は8つの章に分かれます。このイントロダクションが一番最初の章です。
28+
「プログラミング言語Rust」はいくつかの章に分かれています。このイントロダクションが一番最初の章です。
3029
この後は
3130

3231
<!-- * [Getting started][gs] - Set up your computer for Rust development. -->
33-
<!-- * [Learn Rust][lr] - Learn Rust programming through small projects. -->
34-
<!-- * [Effective Rust][er] - Higher-level concepts for writing excellent Rust code. -->
32+
<!-- * [Tutorial: Guessing Game][gg] - Learn some Rust with a small project. -->
3533
<!-- * [Syntax and Semantics][ss] - Each bit of Rust, broken down into small chunks. -->
34+
<!-- * [Effective Rust][er] - Higher-level concepts for writing excellent Rust code. -->
3635
<!-- * [Nightly Rust][nr] - Cutting-edge features that aren’t in stable builds yet. -->
3736
<!-- * [Glossary][gl] - A reference of terms used in the book. -->
3837
<!-- * [Bibliography][bi] - Background on Rust's influences, papers about Rust. -->
3938

4039
* [はじめる][gs] - Rust開発へ向けた環境構築です。
41-
* [Rustを学ぶ][lr] - 小さなプロジェクトを通してRustについて学びます。
42-
* [Effective Rust][er] - 良いRustのコードを書くための高レベルな概念です。
40+
* [チュートリアル:数当てゲーム][gg] - 小さなプロジェクトを通してRustについて学びます。
4341
* [シンタックスとセマンティクス][ss] - Rustについて一歩ずつ、小さく分割しながらやっていきます。
42+
* [Effective Rust][er] - 良いRustのコードを書くための高レベルな概念です。
4443
* [Nightly Rust][nr] - 安定版のRustでは使えないRustの最前線の機能です。
4544
* [用語集][gl] - 本書で使われる用語の参考です。
4645
* [関係書目][bi] - Rustへ影響を与えたもの、Rustに関する論文です。
4746

4847
[gs]: getting-started.html
49-
[lr]: learn-rust.html
48+
[gg]: guessing-game.html
5049
[er]: effective-rust.html
5150
[ss]: syntax-and-semantics.html
5251
[nr]: nightly-rust.html
5352
[gl]: glossary.html
5453
[bi]: bibliography.html
5554

56-
<!-- After reading this introduction, you’ll want to dive into either ‘Learn Rust’ or -->
57-
<!-- ‘Syntax and Semantics’, depending on your preference: ‘Learn Rust’ if you want -->
58-
<!-- to dive in with a project, or ‘Syntax and Semantics’ if you prefer to start -->
59-
<!-- small, and learn a single concept thoroughly before moving onto the next. -->
60-
<!-- Copious cross-linking connects these parts together. -->
61-
62-
このイントロダクションを読み終えたら「Rustを学ぶ」か「シンタックスとセマンティクス」に好みに応じ進んで下さい。
63-
プロジェクトを使って進めたいなら「Rustを学ぶ」を、次に進む前に小さく始めてそれぞれの概念を徹底して学びたいなら「シンタックスとセマンティクス」を選んで下さい。
64-
大量のリンクでそれぞれの部分が相互に繋がっています。
65-
6655
<!-- ### Contributing -->
6756
### 貢献する
6857

@@ -75,6 +64,6 @@ Rustは高級言語のような抽象化も含めた「ゼロコスト抽象化
7564

7665
> 訳注: 日本語の翻訳文書は以下から入手出来ます。
7766
> [GitHub][bookja].
78-
>
67+
>
7968
80-
[bookja]: https://github.com/rust-lang-ja/the-rust-programming-language-ja/tree/master/1.6/ja/book
69+
[bookja]: https://github.com/rust-lang-ja/the-rust-programming-language-ja/tree/master/1.9/ja/book

1.9/ja/book/SUMMARY.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# 概要
22

33
* [はじめる](getting-started.md)
4-
* [Rustを学ぶ](learn-rust.md)
5-
* [数当てゲーム](guessing-game.md)
6-
* [食事する哲学者](dining-philosophers.md)
7-
* [他言語と共存する](rust-inside-other-languages.md)
4+
* [チュートリアル:数当てゲーム](guessing-game.md)
85
* [シンタックスとセマンティクス](syntax-and-semantics.md)
96
* [変数束縛](variable-bindings.md)
107
* [関数](functions.md)
118
* [プリミティブ型](primitive-types.md)
129
* [コメント](comments.md)
1310
* [if](if.md)
1411
* [ループ](loops.md)
12+
* [ベクタ](vectors.md)
1513
* [所有権](ownership.md)
1614
* [参照と借用](references-and-borrowing.md)
1715
* [ライフタイム](lifetimes.md)
@@ -21,7 +19,6 @@
2119
* [マッチ](match.md)
2220
* [パターン](patterns.md)
2321
* [メソッド構文](method-syntax.md)
24-
* [ベクタ](vectors.md)
2522
* [文字列](strings.md)
2623
* [ジェネリクス](generics.md)
2724
* [トレイト](traits.md)

0 commit comments

Comments
 (0)