From 0d0a92011f0f79f8d003713913b0133f6c99bfe7 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 22 Mar 2016 22:32:54 -0500 Subject: [PATCH] Fix a typo --- javascript/accessing-arguments-to-a-function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/accessing-arguments-to-a-function.md b/javascript/accessing-arguments-to-a-function.md index 9480dfa..d17648a 100644 --- a/javascript/accessing-arguments-to-a-function.md +++ b/javascript/accessing-arguments-to-a-function.md @@ -1,6 +1,6 @@ # Accessing Arguments To A Function -The `arguements` object is available within any JavaScript function. It is +The `arguments` object is available within any JavaScript function. It is an array-like object with all of the arguments to the function. Even if not all of the arguments are referenced in the function signature, they can still be accessed via the `arguments` object.