From 937799db29b5eeda1a6df7ef0e2dc35a68ada0e8 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Sat, 14 Dec 2013 14:17:39 -0500 Subject: [PATCH] fix comment --- jquery.mousewheel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jquery.mousewheel.js b/jquery.mousewheel.js index 599a0df05..486a013bb 100755 --- a/jquery.mousewheel.js +++ b/jquery.mousewheel.js @@ -147,8 +147,8 @@ } } - // When in oldMode the delta is based on 120. We devide - // by 40 to try and get a more usable deltaFactor. + // When in oldMode the delta is based on 120. + // Dividing by 40 to try and get a more usable deltaFactor. if ( oldMode ) { // Divide all the things by 40! delta /= 40;