1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-19 14:17:48 +02:00

fixed comment typos

This commit is contained in:
Gani Georgiev 2024-12-30 21:58:29 +02:00
parent 26cb1cef37
commit 3074ed3c5e
2 changed files with 2 additions and 2 deletions

View File

@ -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).

View File

@ -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].