From 6791e7547e36c90a80bc130345ddafd5f0b24425 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milind=20Mishra=20=E2=9A=9B=EF=B8=8F?= Date: Mon, 15 Aug 2022 02:35:30 +0530 Subject: [PATCH] Typo (#39596) ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [x] 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) ## Bug was a simple `typo` ![image](https://user-images.githubusercontent.com/28717686/184554656-83594c8e-cfab-4da1-89a2-f98d08ffe03f.png) - Now fixed --- examples/next-forms/pages/js-form.js | 2 +- examples/next-forms/pages/no-js-form.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/next-forms/pages/js-form.js b/examples/next-forms/pages/js-form.js index 3dd90a9a59a08..c77ee4c9520f9 100644 --- a/examples/next-forms/pages/js-form.js +++ b/examples/next-forms/pages/js-form.js @@ -45,7 +45,7 @@ export default function PageWithJSbasedForm() {

Get started by looking at{' '} - pages/js-from.js + pages/js-form.js

diff --git a/examples/next-forms/pages/no-js-form.js b/examples/next-forms/pages/no-js-form.js index 8a5a8f6fb62d4..17288c1152225 100644 --- a/examples/next-forms/pages/no-js-form.js +++ b/examples/next-forms/pages/no-js-form.js @@ -13,7 +13,7 @@ export default function Form() {

Get started by looking at{' '} - pages/no-js-from.js + pages/no-js-form.js

{/*action: The action attribute defines where the data gets sent. Its value must be a valid relative or absolute URL. If this attribute isn't provided, the data will be sent to the URL of the page containing the form — the current page.