Typo in NextResponse docs (#38259)

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm lint`
- [ ] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples)
This commit is contained in:
Carsten Lebek 2022-07-04 00:18:41 +02:00 committed by GitHub
parent 6b8e499c7b
commit beaa4df9fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ The following static methods are available on the `NextResponse` class directly:
- `rewrite()` - Returns a `NextResponse` with a rewrite set
- `next()` - Returns a `NextResponse` that will continue the middleware chain
The use the methods above, **you must return the `NextResponse` object** returned. `NextResponse` can be imported from `next/server`:
To use the methods above, **you must return the `NextResponse` object** returned. `NextResponse` can be imported from `next/server`:
```typescript
import { NextResponse } from 'next/server'