Skip to content

Commit f021d25

Browse files
authored
Merge pull request #3633 from EledenGreen/patch-3
correct use of word is "argument" not "parameter" in Part6-d
2 parents a0f88aa + 9c4b4e2 commit f021d25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/6/en/part6d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const newNoteMutation = useMutation({ mutationFn: createNote })
206206

207207
The parameter is the function we added to the file <i>requests.js</i>, which uses Axios to send a new note to the server.
208208

209-
The event handler <i>addNote</i> performs the mutation by calling the mutation object's function <i>mutate</i> and passing the new note as a parameter:
209+
The event handler <i>addNote</i> performs the mutation by calling the mutation object's function <i>mutate</i> and passing the new note as an argument:
210210

211211
```js
212212
newNoteMutation.mutate({ content, important: true })

0 commit comments

Comments
 (0)