Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 00971f5

Browse files
committedFeb 2, 2016
update TranslationTable
2 parents 24d38b5 + 361f41a commit 00971f5

File tree

86 files changed

+1246
-663
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+1246
-663
lines changed
 

‎1.6/ja/book/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* [はじめる](getting-started.md)
44
* [Rustを学ぶ](learn-rust.md)
55
* [数当てゲーム](guessing-game.md)
6-
* [晩餐する哲学者](dining-philosophers.md)
6+
* [食事する哲学者](dining-philosophers.md)
77
* [他言語と共存する](rust-inside-other-languages.md)
88
* [シンタックスとセマンティクス](syntax-and-semantics.md)
99
* [変数束縛](variable-bindings.md)
@@ -15,7 +15,7 @@
1515
* [所有権](ownership.md)
1616
* [参照と借用](references-and-borrowing.md)
1717
* [ライフタイム](lifetimes.md)
18-
* [可変性](mutability.md)
18+
* [ミュータビリティ](mutability.md)
1919
* [構造体](structs.md)
2020
* [列挙型](enums.md)
2121
* [マッチ](match.md)

‎1.6/ja/book/attributes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn check() {
5757
この関数は `#[test]` によってマークされており、これは [テスト][tests] を走らせた時に実行されるという特別な意味になります。
5858
通常通りにコンパイルをした場合は、コンパイル結果に含まれません。この関数は今やテスト関数なのです。
5959

60-
[テスト]: testing.html
60+
[tests]: testing.html
6161

6262
<!-- Attributes may also have additional data: -->
6363
アトリビュートは以下のように、追加のデータを持つことができます:
@@ -84,4 +84,4 @@ Rustのアトリビュートは様々なことに利用されます。
8484
すべてのアトリビュートのリストは [リファレンス][reference] に載っています。
8585
現在は、Rustコンパイラーによって定義されている以外の独自のアトリビュートを作成することは許可されていません。
8686

87-
[リファレンス]: ../reference.html#attributes
87+
[reference]: ../reference.html#attributes

0 commit comments

Comments
 (0)
Please sign in to comment.