Skip to content

Commit f9c1bbb

Browse files
committed
Add a few missing semicolons.
1 parent dcd7842 commit f9c1bbb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/geo/graticule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ d3.geo.graticule = function() {
2222

2323
graticule.lines = function() {
2424
return lines().map(function(coordinates) { return {type: "LineString", coordinates: coordinates}; });
25-
}
25+
};
2626

2727
graticule.outline = function() {
2828
return {

src/geo/interpolate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ d3.geo.interpolate = function(source, target) {
66
source[0] * d3_radians, source[1] * d3_radians,
77
target[0] * d3_radians, target[1] * d3_radians
88
);
9-
}
9+
};
1010

1111
function d3_geo_interpolate(x0, y0, x1, y1) {
1212
var cy0 = Math.cos(y0),

src/geom/hull.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ d3.geom.hull = function(vertices) {
115115
};
116116

117117
return hull;
118-
}
118+
};
119119

120120
// are three points in counter-clockwise order?
121121
function d3_geom_hullCCW(i1, i2, i3, v) {

src/layout/stack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ d3.layout.stack = function() {
8787
};
8888

8989
return stack;
90-
}
90+
};
9191

9292
function d3_layout_stackX(d) {
9393
return d.x;

0 commit comments

Comments
 (0)