Skip to content

Commit 1644127

Browse files
authored
Fix Typos in Comments and Documentation (#5805)
* Update mod.rs * Update aggregations.rs
1 parent 16ab390 commit 1644127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quickwit/quickwit-config/src/source_config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ impl KinesisSourceParams {
498498
fn validate_update(&self, other: &Self) -> anyhow::Result<()> {
499499
// Changing the stream would likely mess up the checkpoints because the
500500
// Kinesis shard IDs are used as metastore checkpoint PartitionId, and
501-
// there uniqueness is only guarantied within a stream.
501+
// there uniqueness is only guaranteed within a stream.
502502
ensure!(
503503
self.stream_name == other.stream_name,
504504
"Kinesis stream_name cannot be updated"

quickwit/quickwit-query/src/aggregations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use tantivy::aggregation::metric::{
3030
// hopefully all From in this module are no-ops, otherwise, this is a very sad situation
3131

3232
#[derive(Clone, Debug, Serialize, Deserialize)]
33-
/// The final aggegation result.
33+
/// The final aggregation result.
3434
pub struct AggregationResults(pub Vec<(String, AggregationResult)>);
3535

3636
impl From<TantivyAggregationResults> for AggregationResults {

0 commit comments

Comments
 (0)