Skip to content

Commit

Permalink
Fix typo in comment: "dendogram" -> "dendrogram".
Browse files Browse the repository at this point in the history
  • Loading branch information
jasondavies committed Feb 9, 2012
1 parent b2a701e commit d6e184b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion d3.layout.js
Expand Up @@ -1346,7 +1346,8 @@ function d3_layout_packPlace(a, b, c) {
c.y = a.y;
}
}
// Implements a hierarchical layout using the cluster (or dendogram) algorithm.
// Implements a hierarchical layout using the cluster (or dendrogram)
// algorithm.
d3.layout.cluster = function() {
var hierarchy = d3.layout.hierarchy().sort(null).value(null),
separation = d3_layout_treeSeparation,
Expand Down
3 changes: 2 additions & 1 deletion src/layout/cluster.js
@@ -1,4 +1,5 @@
// Implements a hierarchical layout using the cluster (or dendogram) algorithm.
// Implements a hierarchical layout using the cluster (or dendrogram)
// algorithm.
d3.layout.cluster = function() {
var hierarchy = d3.layout.hierarchy().sort(null).value(null),
separation = d3_layout_treeSeparation,
Expand Down

0 comments on commit d6e184b

Please sign in to comment.