Change name of AgreeToTos to AgreeToTOS.

According to https://github.com/golang/go/wiki/CodeReviewComments#initialisms
This commit is contained in:
xenolf 2015-10-23 10:15:57 +02:00
parent 899ca37a80
commit 3ddf33c8c3
2 changed files with 6 additions and 6 deletions

View file

@ -112,7 +112,7 @@ myUser.Registration = reg
// The client has a URL to the current Let's Encrypt Subscriber
// Agreement. The user will need to agree to it.
err = client.AgreeToTos()
err = client.AgreeToTOS()
if err != nil {
log.Fatal(err)
}

View file

@ -131,9 +131,9 @@ func (c *Client) Register() (*RegistrationResource, error) {
return reg, nil
}
// AgreeToTos updates the Client registration and sends the agreement to
// AgreeToTOS updates the Client registration and sends the agreement to
// the server.
func (c *Client) AgreeToTos() error {
func (c *Client) AgreeToTOS() error {
c.user.GetRegistration().Body.Agreement = c.user.GetRegistration().TosURL
c.user.GetRegistration().Body.Resource = "reg"
jsonBytes, err := json.Marshal(&c.user.GetRegistration().Body)