From fbd076875a45392071d59d19484658cb965c3d88 Mon Sep 17 00:00:00 2001 From: daladim Date: Mon, 5 Jul 2021 11:08:18 +0200 Subject: [PATCH] [doc] --- src/provider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/provider.rs b/src/provider.rs index ce479c3..4c64ce3 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -85,7 +85,7 @@ where pub fn local_mut(&mut self) -> &mut L { &mut self.local } /// Returns the data source described as `remote`. /// - /// Apart in tests, there are very few (if any) reasons to access `remote` directly. + /// Apart from tests, there are very few (if any) reasons to access `remote` directly. /// Usually, you should rather use the `local` source, which (usually) is a much faster local cache. /// To be sure `local` accurately mirrors the `remote` source, you can run [`Provider::sync`] pub fn remote(&self) -> &R { &self.remote }