diff --git a/docs/api-reference/next.config.js/rewrites.md b/docs/api-reference/next.config.js/rewrites.md index 47571668dfb2fa2..946dec86981c7c2 100644 --- a/docs/api-reference/next.config.js/rewrites.md +++ b/docs/api-reference/next.config.js/rewrites.md @@ -323,7 +323,7 @@ module.exports = { } ``` -If you're using `trailingSlash: true`, you also need to insert a trailing slash in the `source` paramater. If the destination server is also expecting a trailing slash it should be included in the `destination` parameter as well. +If you're using `trailingSlash: true`, you also need to insert a trailing slash in the `source` parameter. If the destination server is also expecting a trailing slash it should be included in the `destination` parameter as well. ```js module.exports = { diff --git a/docs/basic-features/script.md b/docs/basic-features/script.md index b08be05800e089d..1f9806415d43dd4 100644 --- a/docs/basic-features/script.md +++ b/docs/basic-features/script.md @@ -166,7 +166,7 @@ There are a number of trade-offs that need to be considered when loading a third Although the `worker` strategy does not require any additional configuration to work, Partytown supports the use of a config object to modify some of its settings, including enabling `debug` mode and forwarding events and triggers. -If you would like to add additonal configuration options, you can include it within the `` component used in a [custom `_document.js`](/docs/advanced-features/custom-document.md): +If you would like to add additional configuration options, you can include it within the `` component used in a [custom `_document.js`](/docs/advanced-features/custom-document.md): ```jsx import { Html, Head, Main, NextScript } from 'next/document'