diff --git a/scroll-into-view/scroll-into-view-tests.ts b/scroll-into-view/scroll-into-view-tests.ts index b3b771835cf210..764ce72ad34f55 100644 --- a/scroll-into-view/scroll-into-view-tests.ts +++ b/scroll-into-view/scroll-into-view-tests.ts @@ -7,7 +7,7 @@ scrollIntoView(someElement); scrollIntoView(someElement, { time: 500, // half a second ease: function(value){ - return Math.pow(value,2) - value); // Do something weird. + return Math.pow(value,2) - value; // Do something weird. }, validTarget: function(target, parentsScrolled){ return parentsScrolled < 2 && !target.matches('.dontScroll'); diff --git a/scroll-into-view/scroll-into-view.d.ts b/scroll-into-view/scroll-into-view.d.ts index b587f361422ed1..cb2e187147a80a 100644 --- a/scroll-into-view/scroll-into-view.d.ts +++ b/scroll-into-view/scroll-into-view.d.ts @@ -1,6 +1,6 @@ // Type definitions for scroll-into-view 1.6.0 // Project: https://github.com/KoryNunn/scroll-into-view -// Definitions by: zivni https://github.com/zivni +// Definitions by: zivni // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module __ScrollIntoView {