Skip to content

Commit d0f582d

Browse files
fix(datacenters): fix spelling of longitude
BREAKING CHANGE: change to field name is a breaking change
1 parent 546f461 commit d0f582d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

fastly/datacenters.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package fastly
22

33
// Coordinates represent the location of a datacenter.
44
type Coordinates struct {
5-
Latitude *float64 `mapstructure:"latitude"`
6-
Longtitude *float64 `mapstructure:"longitude"`
7-
X *float64 `mapstructure:"x"`
8-
Y *float64 `mapstructure:"y"`
5+
Latitude *float64 `mapstructure:"latitude"`
6+
Longitude *float64 `mapstructure:"longitude"`
7+
X *float64 `mapstructure:"x"`
8+
Y *float64 `mapstructure:"y"`
99
}
1010

1111
// Datacenter is a list of Datacenters returned by the Fastly API.

0 commit comments

Comments
 (0)