Remove comment of removed arguments.

This commit is contained in:
Mariano Cano 2018-11-06 17:45:41 -08:00
parent 5f2d998584
commit b23e3bec7f

View file

@ -38,9 +38,9 @@ func Bootstrap(token string) (*Client, error) {
return NewClient(claims.Audience[0], WithRootSHA256(claims.SHA)) return NewClient(claims.Audience[0], WithRootSHA256(claims.SHA))
} }
// BootstrapServer is a helper function that returns an http.Server configured // BootstrapServer is a helper function that using the given token returns the
// with the given address and handler, and prepared to use TLS connections. // given http.Server configured with a TLS certificate signed by the Certificate
// By default the server will kick off a routine that will renew the // Authority. By default the server will kick off a routine that will renew the
// certificate after 2/3rd of the certificate's lifetime has expired. // certificate after 2/3rd of the certificate's lifetime has expired.
// //
// Usage: // Usage: