From 82bc45e6b002a6bb02b032f6bf2405b6e4769ff1 Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Wed, 2 Nov 2016 08:36:31 -0400 Subject: [PATCH] Fix typo from 'arraify' to 'arrayify' (#595) --- js/impress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/impress.js b/js/impress.js index 6f98d93..25e8996 100644 --- a/js/impress.js +++ b/js/impress.js @@ -56,7 +56,7 @@ } )(); - // `arraify` takes an array-like object and turns it into real Array + // `arrayify` takes an array-like object and turns it into real Array // to make all the Array.prototype goodness available. var arrayify = function( a ) { return [].slice.call( a );