docs: Fix some typos in comments as I noticed them

pull/24376/head
Carol (Nichols || Goulding) 2022-03-25 14:06:22 -04:00
parent d37af1a7f5
commit 9043966443
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
3 changed files with 7 additions and 7 deletions

View File

@ -1153,8 +1153,8 @@ impl DataBuffer {
} }
} }
/// BufferBatch is a MutauableBatch with its ingesting order, sequencer_number, that /// BufferBatch is a MutableBatch with its ingesting order, sequencer_number, that helps the
/// helps the ingester keep the batches of data in thier ingesting order /// ingester keep the batches of data in their ingesting order
#[derive(Debug)] #[derive(Debug)]
pub struct BufferBatch { pub struct BufferBatch {
/// Sequence number of the first write in this batch /// Sequence number of the first write in this batch
@ -1172,7 +1172,7 @@ pub struct SnapshotBatch {
pub(crate) min_sequencer_number: SequenceNumber, pub(crate) min_sequencer_number: SequenceNumber,
/// Max sequencer number of its combined BufferBatches /// Max sequencer number of its combined BufferBatches
pub(crate) max_sequencer_number: SequenceNumber, pub(crate) max_sequencer_number: SequenceNumber,
/// Data of its comebined BufferBatches kept in one RecordBatch /// Data of its combined BufferBatches kept in one RecordBatch
pub(crate) data: Arc<RecordBatch>, pub(crate) data: Arc<RecordBatch>,
} }
@ -1209,13 +1209,13 @@ impl SnapshotBatch {
/// a parquet file for given set of SnapshotBatches /// a parquet file for given set of SnapshotBatches
#[derive(Debug, PartialEq, Clone)] #[derive(Debug, PartialEq, Clone)]
pub struct PersistingBatch { pub struct PersistingBatch {
/// Sesquencer id of the data /// Sequencer id of the data
pub(crate) sequencer_id: SequencerId, pub(crate) sequencer_id: SequencerId,
/// Table id of the data /// Table id of the data
pub(crate) table_id: TableId, pub(crate) table_id: TableId,
/// Parittion Id of the data /// Partition Id of the data
pub(crate) partition_id: PartitionId, pub(crate) partition_id: PartitionId,
/// Id of to-be-created parquet file of this data /// Id of to-be-created parquet file of this data