fixed NewBackupsFilesystem code comment
This commit is contained in:
parent
3e3c316da1
commit
d9af1475ef
|
@ -91,7 +91,7 @@ type App interface {
|
||||||
// after you are done working with it.
|
// after you are done working with it.
|
||||||
NewFilesystem() (*filesystem.System, error)
|
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.
|
// for managing app backups based on the current app settings.
|
||||||
//
|
//
|
||||||
// NB! Make sure to call Close() on the returned result
|
// NB! Make sure to call Close() on the returned result
|
||||||
|
|
|
@ -659,7 +659,7 @@ func (app *BaseApp) NewFilesystem() (*filesystem.System, error) {
|
||||||
return filesystem.NewLocal(filepath.Join(app.DataDir(), LocalStorageDirName))
|
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.
|
// for managing app backups based on the current app settings.
|
||||||
//
|
//
|
||||||
// NB! Make sure to call Close() on the returned result
|
// NB! Make sure to call Close() on the returned result
|
||||||
|
|
Loading…
Reference in New Issue