diff --git a/apis/record_helpers.go b/apis/record_helpers.go index 8665c125..10fec926 100644 --- a/apis/record_helpers.go +++ b/apis/record_helpers.go @@ -574,7 +574,7 @@ func authAlert(e *core.RequestEvent, authRecord *core.Record) error { // // Note: The "fake" timeout is a temp solution to avoid blocking // for too long when the SMTP server is not accessible, due - // to the lack of context concellation support in the underlying + // to the lack of context cancellation support in the underlying // mailer and net/smtp package. // The goroutine technically "leaks" but we assume that the OS will // terminate the connection after some time (usually after 3-4 mins). diff --git a/core/events.go b/core/events.go index d0115fcf..2170b12a 100644 --- a/core/events.go +++ b/core/events.go @@ -105,7 +105,7 @@ type ServeEvent struct { CertManager *autocert.Manager // InstallerFunc is the "installer" function that is called after - // successfull server tcp bind but only if there is no explicit + // successful server tcp bind but only if there is no explicit // superuser record created yet. // // It runs in a separate goroutine and its default value is [apis.DefaultInstallerFunc].