Skip to content

Commit

Permalink
Typo (#39596)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
thatbeautifuldream committed Aug 14, 2022
1 parent 0f65bf6 commit 6791e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/next-forms/pages/js-form.js
Expand Up @@ -45,7 +45,7 @@ export default function PageWithJSbasedForm() {

<p className={styles.description}>
Get started by looking at{' '}
<code className={styles.code}>pages/js-from.js</code>
<code className={styles.code}>pages/js-form.js</code>
</p>

<form onSubmit={handleSubmit}>
Expand Down
2 changes: 1 addition & 1 deletion examples/next-forms/pages/no-js-form.js
Expand Up @@ -13,7 +13,7 @@ export default function Form() {
</h1>
<p className={styles.description}>
Get started by looking at{' '}
<code className={styles.code}>pages/no-js-from.js</code>
<code className={styles.code}>pages/no-js-form.js</code>
</p>

{/*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.
Expand Down

0 comments on commit 6791e75

Please sign in to comment.