summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index 1ac45c33..274725c3 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -21,9 +21,9 @@ use std::path::{Path, PathBuf};
/// `Context::configure`:
///
/// ```
-/// # use sequoia_core::Context;
+/// # use sequoia_core::{Context, NetworkPolicy};
/// let c = Context::configure("org.example.webmail")
-/// .home("/tmp/foo")
+/// .network_policy(NetworkPolicy::Offline)
/// .build().unwrap();
/// ```
pub struct Context {
@@ -96,9 +96,9 @@ impl Context {
/// `Context::configure`:
///
/// ```
-/// # use sequoia_core::Context;
+/// # use sequoia_core::{Context, NetworkPolicy};
/// let c = Context::configure("org.example.webmail")
-/// .home("/tmp/foo")
+/// .network_policy(NetworkPolicy::Offline)
/// .build().unwrap();
/// ```
pub struct Config(Context);