diff --git a/pocketbase.go b/pocketbase.go index d6a2c746..1f007b73 100644 --- a/pocketbase.go +++ b/pocketbase.go @@ -64,9 +64,9 @@ type Config struct { // // Note that the application will not be initialized/bootstrapped yet, // aka. DB connections, migrations, app settings, etc. will not be accessible. -// Everything will be initialized when [PocketBase.Start()] is executed. -// If you want to initialize the application before calling [PocketBase.Start()], -// then you'll have to manually call [PocketBase.Bootstrap()]. +// Everything will be initialized when [PocketBase.Start] is executed. +// If you want to initialize the application before calling [PocketBase.Start], +// then you'll have to manually call [PocketBase.Bootstrap]. func New() *PocketBase { _, isUsingGoRun := inspectRuntime() @@ -79,9 +79,9 @@ func New() *PocketBase { // // Note that the application will not be initialized/bootstrapped yet, // aka. DB connections, migrations, app settings, etc. will not be accessible. -// Everything will be initialized when [PocketBase.Start()] is executed. -// If you want to initialize the application before calling [PocketBase..Start()], -// then you'll have to manually call [PocketBase.Bootstrap()]. +// Everything will be initialized when [PocketBase.Start] is executed. +// If you want to initialize the application before calling [PocketBase.Start], +// then you'll have to manually call [PocketBase.Bootstrap]. func NewWithConfig(config Config) *PocketBase { // initialize a default data directory based on the executable baseDir if config.DefaultDataDir == "" {