From 4526e02c0477925e66bc6e13232922a0fd0481a6 Mon Sep 17 00:00:00 2001 From: Chojan Shang Date: Sat, 28 Jan 2023 11:51:18 +0800 Subject: [PATCH] docs: remove out-dated comments Signed-off-by: Chojan Shang --- src/services/http/mod.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/services/http/mod.rs b/src/services/http/mod.rs index adab8a4e3ce..2892d9cda9f 100644 --- a/src/services/http/mod.rs +++ b/src/services/http/mod.rs @@ -14,18 +14,10 @@ //! HTTP Read-only backend support. //! -//! Although HTTP backend supports `write`, `delete` and `create`, but they should -//! only be used for testing purpose. As there are no standards for HTTP services -//! to handle them. -//! //! HTTP Method mapping: //! -//! - `create`: HTTP PUT (test only) //! - `read`: HTTP GET -//! - `write`: HTTP PUT (test only) //! - `stat`: HTTP HEAD -//! - `delete`: HTTP DELETE (test only) -//! - `list`: List internal index. mod backend; pub use backend::Builder;