diff --git a/files/en-us/web/javascript/reference/global_objects/array/some/index.md b/files/en-us/web/javascript/reference/global_objects/array/some/index.md index 50126280860ef73..be9ef337c70e777 100644 --- a/files/en-us/web/javascript/reference/global_objects/array/some/index.md +++ b/files/en-us/web/javascript/reference/global_objects/array/some/index.md @@ -23,7 +23,7 @@ some(callbackFn, thisArg) ### Parameters - `callbackFn` - - : A function to execute for each element in the array. It should return a [truthy](/en-US/docs/Glossary/Truthy) value to indicate the element passes the test, and a [falsy](/en-US/docs/Glossary/Falsy) value otherwise. The function is called with the following arguments: + - : A function to execute for each traversed element in the array. It should return a [truthy](/en-US/docs/Glossary/Truthy) value to indicate the element passes the test, and a [falsy](/en-US/docs/Glossary/Falsy) value otherwise. The function is called with the following arguments: - `element` - : The current element being processed in the array. - `index`