Skip to content

Commit 3de61a3

Browse files
committed
typo
アロー関数式 => 関数式に修正
1 parent ae6e2cf commit 3de61a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api-routes/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ API ルートは Next.js で**API**を構築する方法を提供しています
2222
例えば、以下の API ルート `pages/api/user.js``json` レスポンスを `200` ステータスコードとともに返します:
2323

2424
```js
25-
export default function handler(req, res) => {
25+
export default function handler(req, res) {
2626
res.status(200).json({ name: 'John Doe' })
2727
};
2828
```

0 commit comments

Comments
 (0)