Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix Operator::writer doc comment #4605

Merged
merged 1 commit into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core/src/types/operator/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -822,8 +822,8 @@ impl Operator {
///
/// ## Extra Options
///
/// [`Operator::write`] is a wrapper of [`Operator::write_with`] without any options. To use
/// extra options like `content_type` and `cache_control`, please use [`Operator::write_with`]
/// [`Operator::writer`] is a wrapper of [`Operator::writer_with`] without any options. To use
/// extra options like `content_type` and `cache_control`, please use [`Operator::writer_with`]
/// instead.
///
/// ## Chunk
Expand All @@ -835,7 +835,7 @@ impl Operator {
/// like `s3` could even return hard errors like `EntityTooSmall`. Besides, cloud storage services
/// will cost more money if we write data in small chunks.
///
/// Users can use [`Operator::write_with`] to set a good chunk size might improve the performance,
/// Users can use [`Operator::writer_with`] to set a good chunk size might improve the performance,
///
/// # Examples
///
Expand Down
Loading