Skip to content

Commit

Permalink
Merge pull request #518 from hashicorp/laurenolivia/reorder-tfe.go
Browse files Browse the repository at this point in the history
reorder tfe.go to maintain the alphabetical order
  • Loading branch information
laurenolivia committed Aug 30, 2022
2 parents f47d52f + 8ef8d2d commit 16f8caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tfe.go
Expand Up @@ -385,8 +385,8 @@ func NewClient(cfg *Config) (*Client, error) {
client.SSHKeys = &sshKeys{client: client}
client.StateVersionOutputs = &stateVersionOutputs{client: client}
client.StateVersions = &stateVersions{client: client}
client.TaskStages = &taskStages{client: client}
client.TaskResults = &taskResults{client: client}
client.TaskStages = &taskStages{client: client}
client.Teams = &teams{client: client}
client.TeamAccess = &teamAccesses{client: client}
client.TeamMembers = &teamMembers{client: client}
Expand Down Expand Up @@ -580,7 +580,7 @@ func (c *Client) configureLimiter(rawLimit string) {
c.limiter = rate.NewLimiter(limit, burst)
}

// encodeQueryParams encodes the values into ``URL encoded'' form
// encodeQueryParams encodes the values into "URL encoded" form
// ("bar=baz&foo=quux") sorted by key.
func encodeQueryParams(v url.Values) string {
if v == nil {
Expand Down

0 comments on commit 16f8caa

Please sign in to comment.