From 377a39a88ddaf3f82353ebce656c02bbae251576 Mon Sep 17 00:00:00 2001 From: Artur Sedlukha Date: Tue, 27 Sep 2022 22:40:50 +0300 Subject: [PATCH] Typo in middleware upgrade guide (#40963) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a 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 a 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/examples/adding-examples.md) Co-authored-by: JJ Kasper --- errors/middleware-upgrade-guide.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/errors/middleware-upgrade-guide.md b/errors/middleware-upgrade-guide.md index 94af0bceeae51..4f26e57306762 100644 --- a/errors/middleware-upgrade-guide.md +++ b/errors/middleware-upgrade-guide.md @@ -177,11 +177,11 @@ export default async function handler(req: NextRequest) { ### Summary of changes -| Added | Removed | -| ----------------------- | ------------- | -| `cookie.set` | `cookie` | -| `cookie.delete` | `clearCookie` | -| `cookie.getWithOptions` | `cookies` | +| Added | Removed | +| ------------------------ | ------------- | +| `cookies.set` | `cookie` | +| `cookies.delete` | `clearCookie` | +| `cookies.getWithOptions` | `cookies` | ### Explanation @@ -191,9 +191,9 @@ Based on beta feedback, we are changing the Cookies API in `NextRequest` and `Ne `NextResponse` now has a `cookies` instance with: -- `cookie.delete` -- `cookie.set` -- `cookie.getWithOptions` +- `cookies.delete` +- `cookies.set` +- `cookies.getWithOptions` As well as other extended methods from `Map`.