mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-05-10 01:48:22 +00:00
fixed incomplete comments
This commit is contained in:
parent
4e2b3947b3
commit
2a399bab41
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ func DeleteFolder(ctx context.Context, c *api.Client, folderID string) error {
|
||||||
return c.DeleteFolder(ctx, folderID)
|
return c.DeleteFolder(ctx, folderID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// MoveFolder Moves a Folder into a
|
// MoveFolder Moves a Folder into a Folder
|
||||||
func MoveFolder(ctx context.Context, c *api.Client, folderID, folderParentID string) error {
|
func MoveFolder(ctx context.Context, c *api.Client, folderID, folderParentID string) error {
|
||||||
return c.MoveFolder(ctx, folderID, folderParentID)
|
return c.MoveFolder(ctx, folderID, folderParentID)
|
||||||
}
|
}
|
||||||
|
|
|
@ -204,7 +204,7 @@ func DeleteResource(ctx context.Context, c *api.Client, resourceID string) error
|
||||||
return c.DeleteResource(ctx, resourceID)
|
return c.DeleteResource(ctx, resourceID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// MoveResource Moves a Resource into a
|
// MoveResource Moves a Resource into a Folder
|
||||||
func MoveResource(ctx context.Context, c *api.Client, resourceID, folderParentID string) error {
|
func MoveResource(ctx context.Context, c *api.Client, resourceID, folderParentID string) error {
|
||||||
return c.MoveResource(ctx, resourceID, folderParentID)
|
return c.MoveResource(ctx, resourceID, folderParentID)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue