aboutsummaryrefslogtreecommitdiff
path: root/lockchain-http/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-http/src/lib.rs')
-rw-r--r--lockchain-http/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lockchain-http/src/lib.rs b/lockchain-http/src/lib.rs
index 961ad21..005bdb6 100644
--- a/lockchain-http/src/lib.rs
+++ b/lockchain-http/src/lib.rs
@@ -50,12 +50,12 @@ pub type HttpApi<V> = server::HttpServer<App<Arc<Mutex<V>>>>;
/// ```norun
/// use lockchain_core::{traits::*, EncryptedBody};
/// use lockchain_http::create_server;
-/// use lockchain_files::DataVault;
+/// use lockchain_files::FileVault;
///
/// let server = create_server(
/// "localhost",
/// "8080",
-/// DataVault::<EncryptedBody>::new("name", "some-location"),
+/// FileVault::<EncryptedBody>::new("name", "some-location"),
/// ).run();
/// ```
pub fn create_server<B, V>(