This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch polish-buffer in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 2be8532bf0402011e0f82e32723f47cd74136846 Author: Xuanwo <[email protected]> AuthorDate: Tue Sep 12 13:55:12 2023 +0800 Rename to write buf Signed-off-by: Xuanwo <[email protected]> --- core/src/raw/oio/mod.rs | 4 ++-- core/src/raw/oio/{buf.rs => write_buf.rs} | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/raw/oio/mod.rs b/core/src/raw/oio/mod.rs index bffc70ca2..f965608b5 100644 --- a/core/src/raw/oio/mod.rs +++ b/core/src/raw/oio/mod.rs @@ -41,5 +41,5 @@ pub use cursor::Cursor; mod entry; pub use entry::Entry; -mod buf; -pub use buf::WriteBuf; +mod write_buf; +pub use write_buf::WriteBuf; diff --git a/core/src/raw/oio/buf.rs b/core/src/raw/oio/write_buf.rs similarity index 100% rename from core/src/raw/oio/buf.rs rename to core/src/raw/oio/write_buf.rs
