forked from TrueCloudLab/lego
Change name of AgreeToTos to AgreeToTOS.
According to https://github.com/golang/go/wiki/CodeReviewComments#initialisms
This commit is contained in:
parent
899ca37a80
commit
3ddf33c8c3
2 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue