Skip to content

Commit 1b5c85d

Browse files
authored
Merge branch 'master' into sync-081bb312
2 parents 2b1ce09 + bb347e4 commit 1b5c85d

File tree

6 files changed

+61
-61
lines changed

6 files changed

+61
-61
lines changed

content/docs/conditional-rendering.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ ReactDOM.render(
150150

151151
これが動作するのは、JavaScript では `true && expression` は必ず `expression` と評価され、`false && expression` は必ず `false` と評価されるからです。
152152

153-
従って、条件部分が `true` であれば、`&&` の後に書かれた要素が出力に現れます。もし `false` でれば、React はそれを無視して飛ばします。
153+
従って、条件部分が `true` であれば、`&&` の後に書かれた要素が出力に現れます。もし `false` であれば、React はそれを無視して飛ばします。
154154

155155
### 条件演算子によるインライン If-Else {#inline-if-else-with-conditional-operator}
156156

@@ -240,4 +240,4 @@ ReactDOM.render(
240240

241241
[**Try it on CodePen**](https://codepen.io/gaearon/pen/Xjoqwm?editors=0010)
242242

243-
コンポーネントの `render` メソッドから `null` を返してもコンポーネントのライフサイクルメソッドの発火には影響しません。例えば `componentDidMount` は変わらず呼び出されます。
243+
コンポーネントの `render` メソッドから `null` を返してもコンポーネントのライフサイクルメソッドの発火には影響しません。例えば `componentDidMount` は変わらず呼び出されます。

content/docs/hooks-faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ React の観点から見れば、フックを使ったコンポーネントは
125125

126126
> 補足
127127
>
128-
> [Testing Recipes](/docs/testing-recipes.html) にコピー・ペーストで使えるたくさんの例が掲載されています。
128+
> [テストのレシピ集](/docs/testing-recipes.html) にコピー・ペーストで使えるたくさんの例が掲載されています。
129129
130130
例えばこのようなカウンタコンポーネントがあるとしましょう:
131131

@@ -191,7 +191,7 @@ it('can render and update a counter', () => {
191191

192192
ボイラープレートを減らすため、エンドユーザが使うのと同じ形でコンポーネントを使ってテストが記述できるように設計されている、[React Testing Library](https://testing-library.com/react) の利用をお勧めします。
193193

194-
詳細については、[Testing Recipes](/docs/testing-recipes.html) をご覧ください。
194+
詳細については、[テストのレシピ集](/docs/testing-recipes.html) をご覧ください。
195195

196196
### [Lint ルール](https://www.npmjs.com/package/eslint-plugin-react-hooks) は具体的に何を強制するのですか? {#what-exactly-do-the-lint-rules-enforce}
197197

content/docs/nav.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@
129129
title: フックに関するよくある質問
130130
- title: Testing
131131
items:
132-
- id: testing
133-
title: Testing Overview
132+
- id: testing
133+
title: テスト概要
134134
- id: testing-recipes
135-
title: Testing Recipes
135+
title: テストのレシピ集
136136
- id: testing-environments
137137
title: Testing Environments
138138
- title: Concurrent Mode (Experimental)

0 commit comments

Comments
 (0)