diff --git a/core/app.go b/core/app.go index c030fc52..7a1b9c06 100644 --- a/core/app.go +++ b/core/app.go @@ -91,7 +91,7 @@ type App interface { // after you are done working with it. NewFilesystem() (*filesystem.System, error) - // NewFilesystem creates a new local or S3 filesystem instance + // NewBackupsFilesystem creates a new local or S3 filesystem instance // for managing app backups based on the current app settings. // // NB! Make sure to call Close() on the returned result diff --git a/core/base.go b/core/base.go index 530d18e9..89a8609b 100644 --- a/core/base.go +++ b/core/base.go @@ -659,7 +659,7 @@ func (app *BaseApp) NewFilesystem() (*filesystem.System, error) { return filesystem.NewLocal(filepath.Join(app.DataDir(), LocalStorageDirName)) } -// NewFilesystem creates a new local or S3 filesystem instance +// NewBackupsFilesystem creates a new local or S3 filesystem instance // for managing app backups based on the current app settings. // // NB! Make sure to call Close() on the returned result