From 38a35d354556ce529c2073b53c97839d7164860a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 24 May 2022 10:20:08 +0200 Subject: [PATCH] carddav: improve Client.SyncCollection docs --- carddav/client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/carddav/client.go b/carddav/client.go index a98dc80..38d8a19 100644 --- a/carddav/client.go +++ b/carddav/client.go @@ -430,7 +430,8 @@ func (c *Client) PutAddressObject(path string, card vcard.Card) (*AddressObject, return ao, nil } -// SyncCollection do a sync-collection operation on resource(path), it returns a SyncResponse +// SyncCollection performs a collection synchronization operation on the +// specified resource, as defined in RFC 6578. func (c *Client) SyncCollection(path string, query *SyncQuery) (*SyncResponse, error) { var limit *internal.Limit if query.Limit > 0 {