Skip to content

Commit e814ef3

Browse files
committed
Address review comments
1 parent 4af604b commit e814ef3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/content/learn/creating-a-react-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ React を使って新しいアプリやウェブサイトを作成したい場
3232
npx create-next-app@latest
3333
</TerminalBlock>
3434

35-
Next.js は [Vercel](https://vercel.com/) によってメンテナンスされています。Next.js アプリは Node.js や Docker コンテナをサポートする任意のホスティングプロバイダ上で[デプロイできます](https://nextjs.org/docs/app/building-your-application/deploying)。Next.js はまた、サーバを必要としない[静的エクスポート](https://nextjs.org/docs/app/building-your-application/deploying/static-exports)をサポートしています
35+
Next.js は [Vercel](https://vercel.com/) によってメンテナンスされています。Next.js アプリは Node.js や Docker コンテナをサポートする任意のホスティングプロバイダ、もしくは自前のサーバ上に[デプロイできます](https://nextjs.org/docs/app/building-your-application/deploying)さらに Next.js は、サーバ必要の[静的エクスポート](https://nextjs.org/docs/app/building-your-application/deploying/static-exports)もサポートしています
3636

3737
### React Router (v7) {/*react-router-v7*/}
3838

src/content/learn/separating-events-from-effects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ function ChatRoom({ roomId, theme }) {
439439
// ...
440440
```
441441
442-
これで問題は解決しました。なお、`theme` はエフェクト内で使われなくなったので、依存配列から*削除*しなくてはなりません。また**エフェクトイベント自体はリアクティブではない**ので`onConnected` を依存配列に*加える*必要もありません。
442+
これで問題は解決しました。なお、`theme` はエフェクト内で使われなくなったので、依存配列から*削除*しなくてはなりません。また**エフェクトイベント自体はリアクティブではなく**、依存配列から除外すべきなので`onConnected` を依存配列に*加える*必要もありません。
443443
444444
新しい動作が期待通りであることを確認してください。
445445

src/content/reference/react-dom/static/prerender.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function ProfilePage() {
291291
292292
### プリレンダーの中止 {/*aborting-prerendering*/}
293293
294-
タイムアウト後にプリレンダーを強制的に「諦めさせる」ことが可能です。
294+
プリレンダー処理は、一定時間経過したら強制的に「諦めさせる」ことが可能です。
295295
296296
```js {2-5,11}
297297
async function renderToString() {
@@ -309,7 +309,7 @@ async function renderToString() {
309309
//...
310310
```
311311
312-
サスペンスバウンダリは、子が不完全な状態の場合にはフォールバックの状態で結果 (prelude) に含まれます。
312+
サスペンスバウンダリは、子のレンダーが未完了の場合にはフォールバックの状態で結果 (prelude) に含まれます。
313313
314314
---
315315

src/content/reference/react-dom/static/prerenderToNodeStream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function ProfilePage() {
291291
292292
### プリレンダーの中止 {/*aborting-prerendering*/}
293293
294-
タイムアウト後にプリレンダーを強制的に「諦めさせる」ことが可能です。
294+
プリレンダー処理は、一定時間経過したら強制的に「諦めさせる」ことが可能です。
295295
296296
```js {2-5,11}
297297
async function renderToString() {
@@ -309,7 +309,7 @@ async function renderToString() {
309309
//...
310310
```
311311
312-
サスペンスバウンダリは、子が不完全な状態の場合にはフォールバックの状態で結果 (prelude) に含まれます。
312+
サスペンスバウンダリは、子のレンダーが未完了の場合にはフォールバックの状態で結果 (prelude) に含まれます。
313313
314314
---
315315

0 commit comments

Comments
 (0)