From 2c7473e05ce7884fd985f514b93dbfa412cbd4d0 Mon Sep 17 00:00:00 2001 From: Milt Reder Date: Wed, 27 May 2015 16:36:30 -0400 Subject: [PATCH] fixed typo in clusterByHubsize --- lib/network/modules/Clustering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/network/modules/Clustering.js b/lib/network/modules/Clustering.js index 071215b2..ab5889df 100644 --- a/lib/network/modules/Clustering.js +++ b/lib/network/modules/Clustering.js @@ -28,7 +28,7 @@ class ClusterEngine { if (hubsize === undefined) { hubsize = this._getHubSize(); } - else if (tyepof(hubsize) === "object") { + else if (typeof(hubsize) === "object") { options = this._checkOptions(hubsize); hubsize = this._getHubSize(); }