Skip to content

Commit

Permalink
docs: fix Operator::writer doc comment (#4605)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnpw authored May 13, 2024
1 parent a3b89c4 commit 8c423ec
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 8c423ec

Please sign in to comment.