From fec9df43d9623b4869635c9be4d36ec7ec411bb4 Mon Sep 17 00:00:00 2001 From: jimmonte <33158815+jimmonte@users.noreply.github.com> Date: Mon, 4 Dec 2023 00:42:54 -0500 Subject: [PATCH] Grammar fix to match the plurality of the subject has -> have in predicate --- .../en-us/web/javascript/reference/functions/arguments/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/javascript/reference/functions/arguments/index.md b/files/en-us/web/javascript/reference/functions/arguments/index.md index 9c14ee214f86c7b..c1f635936ce355d 100644 --- a/files/en-us/web/javascript/reference/functions/arguments/index.md +++ b/files/en-us/web/javascript/reference/functions/arguments/index.md @@ -49,7 +49,7 @@ Each argument index can also be set or reassigned: arguments[1] = "new value"; ``` -Non-strict functions that only has simple parameters (that is, no rest, default, or destructured parameters) will sync the new value of parameters with the `arguments` object, and vice versa: +Non-strict functions that only have simple parameters (that is, no rest, default, or destructured parameters) will sync the new value of parameters with the `arguments` object, and vice versa: ```js function func(a) {