From c274a420a2673fda225ab718d215e014f899ab25 Mon Sep 17 00:00:00 2001 From: Panickos Neophytou Date: Sun, 18 Nov 2018 23:22:30 -0500 Subject: [PATCH] fixes typo. --- test/test-windows.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-windows.js b/test/test-windows.js index f549921..ae98a1c 100755 --- a/test/test-windows.js +++ b/test/test-windows.js @@ -19,7 +19,7 @@ function AvgFunction() { self.make = function() { return new AvgFunction(); }; }; -CountFunction.protorype = new eep.AggregateFunction(); +CountFunction.prototype = new eep.AggregateFunction(); function CountFunction() { var self = this; var count = 0;