Skip to content

Commit 73fbcd1

Browse files
authored
docs: fix typo (#11880)
* docs: fix typo * sign CLA
1 parent 55c18bf commit 73fbcd1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,3 +280,4 @@
280280
- yuleicul
281281
- zeromask1337
282282
- zheng-chuang
283+
- vitekzach

docs/start/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ If we review the search form, it looks like this:
13641364
</form>
13651365
```
13661366
1367-
As we've seen before, browsers can serialize forms by the `name` attribute of it's input elements. The name of this input is `q`, that's why the URL has `?q=`. If we named it `search` the URL would be `?search=`.
1367+
As we've seen before, browsers can serialize forms by the `name` attribute of its input elements. The name of this input is `q`, that's why the URL has `?q=`. If we named it `search` the URL would be `?search=`.
13681368
13691369
Note that this form is different from the others we've used, it does not have `<form method="post">`. The default `method` is `"get"`. That means when the browser creates the request for the next document, it doesn't put the form data into the request POST body, but into the [`URLSearchParams`][urlsearchparams] of a GET request.
13701370

0 commit comments

Comments
 (0)