Skip to content

Commit

Permalink
Improve comments about ListReceivedShares and GetReceivedShare (#2144)
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong authored Oct 12, 2021
1 parent 95c3546 commit 51e02f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/share/share.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ type Manager interface {
// it returns only shares attached to the given resource.
ListShares(ctx context.Context, filters []*collaboration.Filter) ([]*collaboration.Share, error)

// ListReceivedShares returns the list of shares the user has access.
// ListReceivedShares returns the list of shares the user has access to.
ListReceivedShares(ctx context.Context, filters []*collaboration.Filter) ([]*collaboration.ReceivedShare, error)

// GetReceivedShare returns the information for a received share the user has access.
// GetReceivedShare returns the information for a received share.
GetReceivedShare(ctx context.Context, ref *collaboration.ShareReference) (*collaboration.ReceivedShare, error)

// UpdateReceivedShare updates the received share with share state.
Expand Down

0 comments on commit 51e02f9

Please sign in to comment.