forked from TrueCloudLab/lego
Merge pull request #256 from heroku/newclient-doc-fix
Fix documentation for acme.NewClient
This commit is contained in:
commit
aa216e0399
1 changed files with 3 additions and 2 deletions
|
@ -58,8 +58,9 @@ type Client struct {
|
|||
}
|
||||
|
||||
// NewClient creates a new ACME client on behalf of the user. The client will depend on
|
||||
// the ACME directory located at caDirURL for the rest of its actions. It will
|
||||
// generate private keys for certificates of size keyBits.
|
||||
// the ACME directory located at caDirURL for the rest of its actions. A private
|
||||
// key of type keyType (see KeyType contants) will be generated when requesting a new
|
||||
// certificate if one isn't provided.
|
||||
func NewClient(caDirURL string, user User, keyType KeyType) (*Client, error) {
|
||||
privKey := user.GetPrivateKey()
|
||||
if privKey == nil {
|
||||
|
|
Loading…
Reference in a new issue