Skip to content

Commit

Permalink
Cleanup: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
ggalmazor committed Jan 25, 2024
1 parent dbb8225 commit 2234989
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnsimple/dns_analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type DnsAnalyticsResponse struct {
Query DnsAnalyticsQueryParameters `json:"query"`
}

func (r *DnsAnalyticsResponse) marshallData() {
func (r *DnsAnalyticsResponse) marshalData() {
list := make([]DnsAnalytics, len(r.Rows))

for i, row := range r.Rows {
Expand Down Expand Up @@ -78,6 +78,6 @@ func (s *DnsAnalyticsService) Query(ctx context.Context, accountID string, optio
}

dnsAnalyticsResponse.HTTPResponse = resp
dnsAnalyticsResponse.marshallData()
dnsAnalyticsResponse.marshalData()
return dnsAnalyticsResponse, nil
}

0 comments on commit 2234989

Please sign in to comment.