Skip to content

Commit

Permalink
fixed merge conflicts with master
Browse files Browse the repository at this point in the history
  • Loading branch information
ARolek committed Nov 12, 2017
2 parents 1714397 + 9cab707 commit 02f695d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion basic/line.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

// Line is a basic line type which is made up of two or more points that don't
// interect.
// intersect.
// TODO: We don't really check to make sure the points don't intersect.
type Line []Point

Expand Down
2 changes: 1 addition & 1 deletion mvt/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ type cursor struct {
tile tegola.BoundingBox

// The extent — it is an int, but to make computations easier and not lose precision
// Untill we convert the ∆'s to int32.
// Until we convert the ∆'s to int32.
extent float64

// These values are cached
Expand Down
2 changes: 1 addition & 1 deletion mvt/feature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func TestNewFeature(t *testing.T) {
if len(tcase.expected) <= 0 {
continue
}
// TOOD test to make sure we got the correct feature
// TODO test to make sure we got the correct feature

}
}
Expand Down
2 changes: 1 addition & 1 deletion wkb/collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WKBGeometry wkbGeometries[num_wkbGeometries]
// Collection is a collection of geometries.
type Collection []Geometry

// Type returns the type number of this geometery, by the spec it's 7.
// Type returns the type number of this geometry, by the spec it's 7.
func (Collection) Type() uint32 {
return GeoGeometryCollection
}
Expand Down

0 comments on commit 02f695d

Please sign in to comment.