Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo #39596

Merged
merged 2 commits into from Aug 14, 2022
Merged

Typo #39596

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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