Skip to content

Commit c449ecb

Browse files
committed
fix: docs
Signed-off-by: Lei, HUANG <mrsatangel@gmail.com>
1 parent 4c6c27a commit c449ecb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/common/grpc/src/flight/do_put.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ use crate::error::{Error, SerdeJsonSnafu};
2121

2222
/// The metadata for "DoPut" requests and responses.
2323
///
24-
/// Currently, there's only a "request_id", for coordinating requests and responses in the streams.
24+
/// Currently, there's a "request_id", for coordinating requests and responses in the streams.
2525
/// Client can set a unique request id in this metadata, and the server will return the same id in
2626
/// the corresponding response. In doing so, a client can know how to do with its pending requests.
2727
#[derive(Serialize, Deserialize)]
2828
pub struct DoPutMetadata {
2929
request_id: i64,
30-
/// Start timestamp of the batch in nanoseconds (optional, for time-windowed batches)
30+
/// Start timestamp of the batch (optional, for time-windowed batches)
3131
#[serde(skip_serializing_if = "Option::is_none")]
3232
start_timestamp: Option<i64>,
33-
/// End timestamp of the batch in nanoseconds (optional, for time-windowed batches)
33+
/// End timestamp of the batch (optional, for time-windowed batches)
3434
#[serde(skip_serializing_if = "Option::is_none")]
3535
end_timestamp: Option<i64>,
3636
}

0 commit comments

Comments
 (0)