Skip to content
This repository has been archived by the owner on Nov 7, 2018. It is now read-only.

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Oct 10, 2012
1 parent 42fd6d3 commit 526f78f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simplify/simplify.js
Expand Up @@ -122,8 +122,8 @@ d3.simplify = function() {
};
}

function simplifyMultiPolygon(mulitPolygon) {
return mulitPolygon.map(simplifyPolygon).filter(length);
function simplifyMultiPolygon(multiPolygon) {
return multiPolygon.map(simplifyPolygon).filter(length);
}

function simplifyPolygon(polygon) {
Expand Down

0 comments on commit 526f78f

Please sign in to comment.