From 18e2d0a96a64d0ee060015cd0309343ede15c5f3 Mon Sep 17 00:00:00 2001 From: daladim Date: Sun, 11 Apr 2021 19:53:38 +0200 Subject: [PATCH] [doc] --- src/provider.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/provider.rs b/src/provider.rs index de8af41..b5278b4 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -41,8 +41,10 @@ impl SyncResult { } } -/// A data source that combines two `CalDavSource`s (usually a server and a local cache), which is able to sync both sources. -/// This can be used for integration tests, where the remote source is mocked by a `Cache`. +/// A data source that combines two `CalDavSource`s, which is able to sync both sources. +/// +/// Usually, you will only need to use a provider between a server and a local cache, that is to say `Provider` +/// However, providers can be used for integration tests, where the remote source is mocked by a `Cache`. pub struct Provider where L: CalDavSource,