Browse Source

fixed typo in clusterByHubsize

flowchartTest
Milt Reder 9 years ago
parent
commit
2c7473e05c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/network/modules/Clustering.js

+ 1
- 1
lib/network/modules/Clustering.js View File

@ -28,7 +28,7 @@ class ClusterEngine {
if (hubsize === undefined) { if (hubsize === undefined) {
hubsize = this._getHubSize(); hubsize = this._getHubSize();
} }
else if (tyepof(hubsize) === "object") {
else if (typeof(hubsize) === "object") {
options = this._checkOptions(hubsize); options = this._checkOptions(hubsize);
hubsize = this._getHubSize(); hubsize = this._getHubSize();
} }

Loading…
Cancel
Save